From: Ben Hutchings Date: Sun, 2 Nov 2008 23:15:55 +0000 (+0000) Subject: Add distclean target X-Git-Tag: 0.2~3 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=videolink.git;a=commitdiff_plain;h=8ad736f3542b97f752c0a19c1b9f1e8fc927a904 Add distclean target --- diff --git a/Makefile b/Makefile index 6a5ddc8..168ca2c 100644 --- a/Makefile +++ b/Makefile @@ -28,14 +28,17 @@ webdvd : $(cxxsources:.cpp=.o) $(csources:.c=.o) $(CXX) $(LDFLAGS) -o $@ $^ clean : - rm -f webdvd *.d *.o *~ \#* *.orig *.rej + rm -f webdvd *.d *.o *~ .\#* *.orig *.rej svn-commit*.tmp *.dvdauthor *.png *.vob *.spumux + +distclean : clean + rm -rf .svn install : mkdir -p -m 755 $(prefix)/bin $(prefix)/lib/webdvd install -m 755 -s webdvd $(prefix)/bin install -m 644 webdvd.css $(prefix)/lib/webdvd -.PHONY : clean install +.PHONY : clean distclean install browserwidget.% : CPPFLAGS += -DMOZ_LIB_DIR='"$(moz_lib_dir)"'