1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-30 06:19:19 +02:00

Makefile: -lXXXXX is really a filename parameter

According to gcc docs, -l is converted to a filename which makes it a
filename parameter. Let's move it to the end.

Signed-off-by: Kai Krakow <kai@kaishome.de>
Dieser Commit ist enthalten in:
Kai Krakow
2018-01-19 21:11:54 +01:00
committet von Zygo Blaxell
Ursprung d6312c338b
Commit ca1a3bed12
+1 -1
Datei anzeigen
@@ -33,7 +33,7 @@ include depends.mk
%: %.o ../makeflags
@echo "Implicit rule %: %.o"
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(LIBS) -o $@ $<
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)
clean:
rm -fv *.o