mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
let test_ast compile again
This commit is contained in:
parent
0e3db81cf3
commit
5da30a46d1
2 changed files with 4 additions and 2 deletions
5
Makefile
5
Makefile
|
@ -20,10 +20,11 @@ OBJ = \
|
|||
util.o \
|
||||
code.o \
|
||||
ast.o \
|
||||
ir.o
|
||||
ir.o \
|
||||
error.o
|
||||
OBJ_A = test/ast-test.o
|
||||
OBJ_I = test/ir-test.o
|
||||
OBJ_C = main.o lexer.o parser.o error.o
|
||||
OBJ_C = main.o lexer.o parser.o
|
||||
OBJ_X = exec-standalone.o util.o
|
||||
|
||||
#default is compiler only
|
||||
|
|
|
@ -21,6 +21,7 @@ const char *opts_output = "progs.dat";
|
|||
int opts_standard = COMPILER_GMQCC;
|
||||
bool opts_debug = false;
|
||||
bool opts_memchk = false;
|
||||
bool opts_werror = false;
|
||||
|
||||
#include "ast-macros.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue