summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ae2159d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
1CC = gcc
2CCFLAGS = -owall
3INCLUDES =
4PREFIX = /usr/local
5
6.PHONY: all install
7
8all: temperaturUmrechner
9
10install:
11 mkdir -p $(PREFIX)/bin
12 install -m 0755 -t $(PREFIX)/bin temperaturUmrechner
13
14temperaterUmrechner:
15 $(CC) $(INCLUDES) $(CCFLAGS) -o temperaturUmrechner temperaturUmrechner.c