1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +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>
This commit is contained in:
Kai Krakow 2018-01-19 21:11:54 +01:00 committed by Zygo Blaxell
parent d6312c338b
commit ca1a3bed12

View File

@ -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