aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: fd00f7e53d6a40f5912668dcb20258beebf6af7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
CC=gcc
LIBS=
ARGS=

RELEASE=0
GFLAGS=-Wall -Wextra -Werror -Wswitch-enum -std=c11
DFLAGS=-ggdb -fsanitize=address -fsanitize=undefined -DDEBUG
RFLAGS=-O3
ifeq ($(RELEASE), 1)
CFLAGS=$(GFLAGS) $(RFLAGS)
else
CFLAGS=$(GFLAGS) $(DFLAGS)
endif

.PHONY: all
all: obi.out obc.out

obi.out: lib.c parser.c obi.c
	$(CC) $(CFLAGS) $^ -o $@ $(LIBS)

obc.out: lib.c parser.c assembler.c obc.c
	$(CC) $(CFLAGS) $^ -o $@ $(LIBS)

OUT=
.PHONY: run
run: $(OUT)
	./$^ $(ARGS)

.PHONY:
clean:
	rm -v *.out *.o *.asm