- make "make distclean" work in all directories

svn path=/trunk/boinc/; revision=16245
This commit is contained in:
David Anderson 2008-10-21 21:13:52 +00:00
parent 87ff7b07d2
commit 1a409685e5
6 changed files with 13 additions and 1 deletions

View File

@ -8506,3 +8506,8 @@ David 21 Oct 2008
html/inc/
team.inc
David 21 Oct 2008
- make "make distclean" work in all directories
samples/*/Makefile

View File

@ -35,7 +35,10 @@ libstdc++.a:
ln -s `g++ -print-file-name=libstdc++.a`
clean:
/bin/rm -f $(PROGS)
/bin/rm -f $(PROGS) *.o
distclean:
/bin/rm -f $(PROGS) *.o libstdc++.a
uc2: uc2.o libstdc++.a $(BOINC_API_DIR)/libboinc_api.a $(BOINC_LIB_DIR)/libboinc.a
$(CXX) $(CXXFLAGS) -o uc2 uc2.o libstdc++.a -pthread -lboinc_api -lboinc

View File

@ -21,6 +21,7 @@ libstdc++.a:
clean:
/bin/rm -f $(PROGS)
distclean:
/bin/rm -f $(PROGS) *.o libstdc++.a

View File

@ -21,6 +21,7 @@ libstdc++.a:
clean:
rm $(PROGS)
distclean:
/bin/rm -f $(PROGS) *.o libstdc++.a

View File

@ -6,6 +6,7 @@ all: $(PROGS)
clean:
rm $(PROGS)
distclean:
rm $(PROGS)

View File

@ -22,6 +22,7 @@ libstdc++.a:
clean:
rm $(PROGS) *.o
distclean:
/bin/rm -f $(PROGS) *.o libstdc++.a