* Add a distclean target to remove config.h.

This commit is contained in:
Justin Maggard 2010-10-27 00:40:47 +00:00
parent 2f53a05727
commit 6561dc37cb

View File

@ -43,7 +43,7 @@ TESTUPNPDESCGENOBJS = testupnpdescgen.o upnpdescgen.o
EXECUTABLES = minidlna testupnpdescgen
.PHONY: all clean install depend
.PHONY: all clean distclean install depend
all: $(EXECUTABLES)
@ -52,6 +52,9 @@ clean:
$(RM) $(EXECUTABLES)
$(RM) testupnpdescgen.o
distclean: clean
$(RM) config.h
install: minidlna
$(INSTALL) -d $(SBININSTALLDIR)
$(INSTALL) minidlna $(SBININSTALLDIR)