blob: ec33c3cca1b4b9e7f34a5ea71747423a8ed71849 (
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
|
name := bf
cc := cc
flags := -g
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
%.o: %.c include/%.h
$(cc) -c $(flags) $< -o $@
install:
make
cp ./$(name).out /usr/local/bin/$(name)
uninstall:
rm -f /usr/local/bin/$(name)
clean:
rm -f ./$(name).out ./src/*.o
me:
@[ "$(USER)" = "root" ] && echo "Okay." || echo "What? Make it yourself."
a sandwich:
@exit
.PHONY: install uninstall clean me a sandwich
|