Makefile (393B)
1CFLAGS = -Wunused-variable -Wunused-function -Wconversion 2 3ifeq ($(DEBUG),1) 4CFLAGS += -Og -g 5else 6CFLAGS += -O2 7endif 8 9all: debruijn 10 11debruijn: main.c 12 $(CC) -o $@ $< $(CFLAGS) 13 14cleanall: clean 15 16clean: 17 rm -f debruijn 18 19install: 20 install -m 755 debruijn -t "$(DESTDIR)$(PREFIX)$(BINDIR)" 21 22uninstall: 23 rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)/debruijn" 24 25.PHONY: all cleanall clean install uninstall