summaryrefslogtreecommitdiff
path: root/Makefile
blob: e856534098be600d830382589095aa6a91ab0cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all clean

CFLAGS += -g
CFLAGS += -O3
CFLAGS += -I./magic_buddy
# CFLAGS += -fsanitize=address

all: build/examples/main

build/examples/%: examples/%.c magic_buddy/magic_buddy.c
	@ mkdir -p $(dir $@)
	$(CC) $(CFLAGS) $^ -o $@

clean:
	rm -rf build
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback