icestorm/iceprog/Makefile

24 lines
345 B
Makefile
Raw Normal View History

2015-07-18 13:07:39 +02:00
# CC = clang
LDLIBS = -L/usr/local/lib -lftdi -lm
CFLAGS = -MD -O0 -ggdb -Wall -std=c99 -I/usr/local/include
DESTDIR = /usr/local
2015-07-18 13:07:39 +02:00
all: iceprog
iceprog: iceprog.o
install: all
cp iceprog $(DESTDIR)/bin/iceprog
2015-07-18 13:07:39 +02:00
uninstall:
rm -f $(DESTDIR)/bin/iceprog
2015-07-18 13:07:39 +02:00
clean:
rm -f iceprog
rm -f *.o *.d
-include *.d
.PHONY: all install uninstall clean