Changeset 133
- Timestamp:
- 09/02/05 09:40:33 (3 years ago)
- Files:
-
- Makefile (modified) (2 diffs)
- src/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Makefile
r132 r133 9 9 clean: 10 10 +$(MAKE) -C src clean 11 12 distclean: clean 13 +$(MAKE) -C src distclean 11 14 12 15 install: all … … 27 30 $(RM) /usr/share/man/man8/swapspace.8 28 31 32 dist : distclean VERSION 33 tar -czf swapspace-`cat VERSION`.tar.gz --exclude=debian --exclude=.svn --exclude=.*.swp --exclude=tmp --exclude=swapspace-*.tar.gz . 34 $(RM) -r tmp 35 mkdir -p tmp/swapspace-`cat VERSION` 36 tar -xzf swapspace-`cat VERSION`.tar.gz -C tmp/swapspace-`cat VERSION` 37 $(RM) swapspace-`cat VERSION`.tar.gz 38 tar -czf ../swapspace-`cat VERSION`.tar.gz -C tmp swapspace-`cat VERSION` 39 $(RM) -r tmp 40 41 29 42 # Derive version number and last change date from Debian changelog 30 43 VERSION: debian/changelog src/Makefile
r102 r133 44 44 45 45 clean : 46 $(RM) swapspace $(SWAPSPACEOBJS) hoghog.o46 $(RM) $(SWAPSPACEOBJS) hog.o 47 47 48 .PHONY : all clean 48 distclean : clean 49 $(RM) swapspace hog 50 51 .PHONY : all clean distclean 52
