blob: 057890da205dff60be5d7e657bc7f5fa974b0a4e (
plain) (
blame)
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
32
33
34
35
|
.PHONY: install uninstall dev clean test me a sandwich
name := halk
cc := gcc
flags :=
devflags := -ggdb -fsanitize=leak,address,undefined -fno-omit-frame-pointer
sources := $(wildcard src/*.c)
sources := $(filter-out src/parser.c, $(sources)) # exclude the incomplete parser for now.
objects := $(sources:.c=.o)
$(name): $(objects)
$(cc) $(objects) $(flags) -o ./$(name).out
dev: $(objects)
$(cc) $(objects) $(devflags) -o ./$(name).out
%.o: %.c include/%.h
$(cc) -c $(flags) $< -o $@
install:
make
cp ./$(name).out /usr/bin/$(name)
uninstall:
rm -f /usr/bin/$(name)
clean:
rm -f ./$(name).out ./src/*.o
# fun
me:
@[ "$(USER)" = "root" ] && echo "Okay." || echo "What? Make it yourself."
a sandwich:
@exit
|