mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 09:02:25 +00:00
Use .o rather than .c in the Makefile... sorry for that mistake
This commit is contained in:
parent
41a39125be
commit
06bdc46864
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -7,9 +7,9 @@ OBJ = main.o \
|
|||
typedef.o \
|
||||
util.o \
|
||||
code.o \
|
||||
asm.c \
|
||||
ast.c \
|
||||
ir.c
|
||||
asm.o \
|
||||
ast.o \
|
||||
ir.o
|
||||
|
||||
%.o: %.c
|
||||
$(CC) -c $< -o $@ $(CFLAGS)
|
||||
|
|
Loading…
Reference in a new issue