mirror of
https://codeberg.org/andyscott/marCsweep.git
synced 2024-11-12 15:20:49 -05:00
Make: added vm.c to SRCS
This commit is contained in:
parent
e2b3ff5f54
commit
286fbb1a49
1 changed files with 1 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -1,8 +1,7 @@
|
|||
CC = gcc
|
||||
CFLAGS = -O3 -Wall -Wextra -Wpedantic
|
||||
|
||||
|
||||
SRCS = main.c gc.c
|
||||
SRCS = main.c vm.c gc.c
|
||||
OBJS = $(SRCS:.c=.o)
|
||||
EXE = gc
|
||||
|
||||
|
@ -11,7 +10,6 @@ DBEXE = $(DBDIR)/$(EXE)
|
|||
DBOBJS = $(addprefix $(DBDIR)/, $(OBJS))
|
||||
DBCFLAGS = -g -O0 -DDEBUG
|
||||
|
||||
|
||||
REDIR = build
|
||||
REEXE = $(REDIR)/$(EXE)
|
||||
REOBJS = $(addprefix $(REDIR)/, $(OBJS))
|
||||
|
|
Loading…
Reference in a new issue