Changeset 15158
- Timestamp:
- 2008-03-31T10:45:36+13:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gsdl/trunk/Makefile.in
r13777 r15158 49 49 # indexers are treated slightly differently as we don't want to do make all/install 50 50 INDEXERSDIR = indexers 51 # all directories tobe compiled51 # all directories should be compiled 52 52 COMPILEDIRS = packages lib src/txt2db src/db2txt src/hashfile src/getpw src/phind/generate src/colservr src/recpt src/oaiservr 53 53 # a subset of the directories get installed … … 78 78 done 79 79 80 # added test to check existence of Makefile, as src/recpt is in81 # both INSTALLDIRS and OTHERDIRS - can't make distclean twice!82 # do we need this test now??83 80 distclean: clean 84 81 rm -f Makefile config.cache config.h config.log stamp-h config.status 85 for subdir in $(COMPILEDIRS) ; do \82 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \ 86 83 echo cleaning $@ in $$subdir; \ 87 (cd $$subdir && if test -e Makefile; then $(MAKE) distclean;fi) || exit 1; \84 (cd $$subdir && $(MAKE) distclean) || exit 1; \ 88 85 done 89 86 90 87 clean: 91 for subdir in $(COMPILEDIRS) ; do \88 for subdir in $(COMPILEDIRS) $(INDEXERSDIR); do \ 92 89 echo cleaning $@ in $$subdir; \ 93 (cd $$subdir && if test -e Makefile; then $(MAKE) clean; fi) || exit 1; \90 (cd $$subdir && $(MAKE) clean) || exit 1; \ 94 91 done 95 92
Note:
See TracChangeset
for help on using the changeset viewer.