From: stephan b. <sg...@us...> - 2004-12-29 20:56:39
|
Update of /cvsroot/pclasses/pclasses2/toc/make In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26703/toc/make Modified Files: BIN_PROGRAMS.make Log Message: BIN_PROGRAMS_LDADD now comes before $(binname)_LDADD. Index: BIN_PROGRAMS.make =================================================================== RCS file: /cvsroot/pclasses/pclasses2/toc/make/BIN_PROGRAMS.make,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- BIN_PROGRAMS.make 24 Dec 2004 23:06:28 -0000 1.2 +++ BIN_PROGRAMS.make 29 Dec 2004 20:56:29 -0000 1.3 @@ -28,7 +28,7 @@ # $1 = binary file name # $2 = optional arguments to linker. # list of objects to link is derived from $($(1)_bin_OBJECTS) and $(BIN_PROGRAMS_OBJECTS) -toc_link_binary = $(CXX) -o $(1) $($(1)_bin_OBJECTS) $(BIN_PROGRAMS_OBJECTS) $(LDFLAGS) $($(1)_bin_LDADD) $(BIN_PROGRAMS_LDADD) $(2) +toc_link_binary = $(CXX) -o $(1) $($(1)_bin_OBJECTS) $(BIN_PROGRAMS_OBJECTS) $(LDFLAGS) $(BIN_PROGRAMS_LDADD) $($(1)_bin_LDADD) $(2) ifneq (,$(BIN_PROGRAMS)) |