diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 900dd555..9b577cac 100644 --- a/src/Makefile +++ b/src/Makefile @@ -152,3 +152,9 @@ install: $(TARGET) clean: rm -f $(TARGET) $(RCLINKS) $(RCPRIVLINKS) rm -f *.o *~ *.core *.so + +-include .depend +.depend: + $(CC) $(CPPFLAGS) -MM *.c > .depend + +.PHONY: all clean install links |