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:
parent
d6312c338b
commit
ca1a3bed12
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user