summaryrefslogtreecommitdiff
path: root/Makefile
blob: 57823d11abc22a7639e079f25931d656a80ac9e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CC = clang
CFLAGS = -Wall -Wextra -std=c99 -pedantic -O3
LDFLAGS = -lm
OBJECTS = mjolnir.o
TARGET = mjolnir

release: $(TARGET)

%.o: %.c
	$(CC) -c $(CFLAGS) $<

$(TARGET): $(OBJECTS)

install: release
	echo "Installing... (not implemented)"

clean:
	rm -f *.o *~ core tags $(TARGET)

tags:
	ctags *