mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 03:50:36 +00:00
link with $(LIBS), so on linux you can easily add -lrt without changing the Makefile
This commit is contained in:
parent
aca5e05173
commit
984d8e7adc
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -52,7 +52,7 @@ test: test_ast test_ir
|
||||||
|
|
||||||
# compiler target
|
# compiler target
|
||||||
gmqcc: $(OBJ_C) $(OBJ)
|
gmqcc: $(OBJ_C) $(OBJ)
|
||||||
$(CC) -o $@ $^ $(CFLAGS)
|
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
||||||
|
|
||||||
#all target is test and all
|
#all target is test and all
|
||||||
all: test gmqcc
|
all: test gmqcc
|
||||||
|
|
Loading…
Reference in a new issue