mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
on linux we need -lm for sqrt
This commit is contained in:
parent
8465f98f37
commit
ab440743eb
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -45,7 +45,7 @@ test_ast: $(OBJ_A) $(OBJ)
|
||||||
test_ir: $(OBJ_I) $(OBJ)
|
test_ir: $(OBJ_I) $(OBJ)
|
||||||
$(CC) -o $@ $^ $(CFLAGS)
|
$(CC) -o $@ $^ $(CFLAGS)
|
||||||
qcvm: $(OBJ_X)
|
qcvm: $(OBJ_X)
|
||||||
$(CC) -o $@ $^ $(CFLAGS)
|
$(CC) -o $@ $^ $(CFLAGS) -lm
|
||||||
exec.o: execloop.h
|
exec.o: execloop.h
|
||||||
exec-standalone.o: execloop.h
|
exec-standalone.o: execloop.h
|
||||||
test: test_ast test_ir
|
test: test_ast test_ir
|
||||||
|
|
Loading…
Reference in a new issue