summaryrefslogtreecommitdiff
path: root/tools/omar/Makefile
blob: ee302601884c8aab3606ec77c0f0174645d44ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFILES = $(shell find . -name "*.c")
CFLAGS = -pedantic
CC = gcc

.PHONY: all
all:
	mkdir -p bin/
	$(CC) $(CFLAGS) $(CFILES) -o bin/omar

.PHONY: clean
clean:
	rm -rf bin/