mirror of https://github.com/BOINC/boinc.git
- Change Makefiles to use "$(LN) foo ." instead of "ln foo"
svn path=/trunk/boinc/; revision=18003
This commit is contained in:
parent
e8a0cb3742
commit
18b5362c1d
|
@ -73,11 +73,11 @@ all-local: $(all_local)
|
||||||
|
|
||||||
$(LIBBOINC_API_STATIC): libboinc_api.la
|
$(LIBBOINC_API_STATIC): libboinc_api.la
|
||||||
rm -f $(LIBBOINC_API_STATIC)
|
rm -f $(LIBBOINC_API_STATIC)
|
||||||
ln .libs/$(LIBBOINC_API_STATIC)
|
$(LN) .libs/$(LIBBOINC_API_STATIC) .
|
||||||
|
|
||||||
$(LIBBOINC_GRAPHICS2_STATIC): libboinc_graphics2.la
|
$(LIBBOINC_GRAPHICS2_STATIC): libboinc_graphics2.la
|
||||||
rm -f $(LIBBOINC_GRAPHICS2_STATIC)
|
rm -f $(LIBBOINC_GRAPHICS2_STATIC)
|
||||||
ln .libs/$(LIBBOINC_GRAPHICS2_STATIC)
|
$(LN) .libs/$(LIBBOINC_GRAPHICS2_STATIC) .
|
||||||
|
|
||||||
|
|
||||||
endif ## ENABLE_LIBRARIES
|
endif ## ENABLE_LIBRARIES
|
||||||
|
|
|
@ -4303,3 +4303,11 @@ David 5 May 2009
|
||||||
|
|
||||||
client/
|
client/
|
||||||
cpu_sched.cpp
|
cpu_sched.cpp
|
||||||
|
|
||||||
|
David 5 May 2009
|
||||||
|
- Change Makefiles to use "$(LN) foo ." instead of "ln foo"
|
||||||
|
|
||||||
|
zip/
|
||||||
|
Makefile.am
|
||||||
|
api/
|
||||||
|
Makefile.am
|
||||||
|
|
|
@ -70,6 +70,6 @@ all-local: $(all_local)
|
||||||
|
|
||||||
$(LIBBOINC_ZIP_STATIC): libboinc_zip.la
|
$(LIBBOINC_ZIP_STATIC): libboinc_zip.la
|
||||||
rm -f $(LIBBOINC_ZIP_STATIC)
|
rm -f $(LIBBOINC_ZIP_STATIC)
|
||||||
ln .libs/$(LIBBOINC_ZIP_STATIC)
|
$(LN) .libs/$(LIBBOINC_ZIP_STATIC) .
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue