diff options
-rw-r--r-- | Makefile | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -100,9 +100,9 @@ all: $(derived-assets) lib$(NAME).a: $(sources.o) $(NAME).a: $(sources.o) src/main.o $(fuzz.bin): lib$(NAME).a -src/config.h: Makefile deps.mk -$(sources.o) $(tests.o): Makefile deps.mk src/config.h -src/main.o tests/slurp.o: Makefile deps.mk src/config.h +src/config.h: Makefile deps.mk +$(sources.o) $(tests.o) src/main.o: Makefile deps.mk src/config.h +tests/slurp.o: Makefile deps.mk src/config.h tests/slurp.o: tests/slurp.h @@ -150,9 +150,9 @@ clean: ## ensures that all installable artifacts are crafted beforehand. install: all mkdir -p \ - '$(DESTDIR)$(BINDIR)' \ - '$(DESTDIR)$(LIBDIR)' \ - '$(DESTDIR)$(SRCDIR)' \ + '$(DESTDIR)$(BINDIR)' \ + '$(DESTDIR)$(LIBDIR)' \ + '$(DESTDIR)$(SRCDIR)' \ '$(DESTDIR)$(INCLUDEDIR)' \ '$(DESTDIR)$(INCLUDEDIR)'/$(NAME)/ cp $(NAME).bin '$(DESTDIR)$(BINDIR)'/$(NAME) @@ -181,9 +181,4 @@ uninstall: done -## Show this help. -help: - sh tools/makehelp.sh < Makefile - - ALWAYS: |