Explorar el Código

Move libraries to the statr of the compile line
Author: jgg
Date: 1998-07-30 05:34:20 GMT
Move libraries to the statr of the compile line

Arch Librarian hace 22 años
padre
commit
b572638d2e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      buildlib/program.mak

+ 1 - 1
buildlib/program.mak

@@ -31,7 +31,7 @@ veryclean/$(LOCAL): clean/$(LOCAL)
 # The binary build rule
 $($(LOCAL)-BIN): $($(LOCAL)-OBJS)
 	echo Building program $@
-	$(CXX) $(CXXFLAGS) $(LDFLAGS) $(LFLAGS) -o $@ $(filter %.o,$^) $($(LOCAL)-SLIBS)
+	$(CXX) $(CXXFLAGS) $(LDFLAGS) $(LFLAGS) $($(LOCAL)-SLIBS) -o $@ $(filter %.o,$^)
 
 # Compilation rules
 vpath %.cc $(SUBDIRS)