use $LDFLAGS in Makefile

This commit is contained in:
Stefan Bühler 2021-09-15 15:02:32 +02:00 committed by Stefan Bühler
parent ed516154d8
commit 03ef972059
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ override CFLAGS += -D_REENTRANT $(shell sdl-config --cflags) $(DBG) $(WARNFLAGS)
all: sdlbomber
sdlbomber: announce.o bomber.o draw.o game.o gfx.o sound.o list.o network.o menu.o utils.o
gcc -o $@ $^ $(shell sdl-config --libs) -lavahi-common -lavahi-client $(DBG)
gcc $(LDFLAGS) -o $@ $^ $(shell sdl-config --libs) -lavahi-common -lavahi-client $(DBG)
matcher: matcher.c