.POSIX: CONFIGFILE = config.mk include $(CONFIGFILE) OBJ =\ braces.o HDR =\ arg.h ALL_CPPFLAGS = $(CPPFLAGS) $(FUZZED_CPPFLAGS) ALL_CFLAGS = $(CFLAGS) $(FUZZED_CFLAGS) ALL_LDFLAGS = $(LDFLAGS) $(FUZZED_LDFLAGS) all: braces $(OBJ): $(HDR) .c.o: $(CC) -c -o $@ $< $(ALL_CFLAGS) $(GOV_CFLAGS) $(ALL_CPPFLAGS) $(GOV_CPPFLAGS) braces: $(OBJ) $(CC) -o $@ $(OBJ) $(ALL_LDFLAGS) $(COV_LDFLAGS) install: braces mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1/" cp -- braces "$(DESTDIR)$(PREFIX)/bin/" cp -- braces.1 "$(DESTDIR)$(MANPREFIX)/man1/" uninstall: -rm -f -- "$(DESTDIR)$(PREFIX)/bin/braces" -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/braces.1" clean: -rm -f -- *.o *.a *.lo *.su *.so *.so.* *.gch -rm -f -- *.gcov *.gcno *.gcda *.t *.to *.f *.fo -rm -f -- braces .SUFFIXES: .SUFFIXES: .o .c .PHONY: all install uninstall clean