summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGregor Kleen <kleen@cip.ifi.lmu.de>2016-11-03 14:59:18 +0100
committerGregor Kleen <kleen@cip.ifi.lmu.de>2016-11-03 14:59:18 +0100
commit34d6fae5960a16ecddbd1ed4852a56a0784638ad (patch)
treef7a268b8954a859777b2554d1c89506daac2286e /Makefile
parent78603c50f61f74624218459ad6d8e212d36e681f (diff)
downloadsysprak.exc-34d6fae5960a16ecddbd1ed4852a56a0784638ad.tar
sysprak.exc-34d6fae5960a16ecddbd1ed4852a56a0784638ad.tar.gz
sysprak.exc-34d6fae5960a16ecddbd1ed4852a56a0784638ad.tar.bz2
sysprak.exc-34d6fae5960a16ecddbd1ed4852a56a0784638ad.tar.xz
sysprak.exc-34d6fae5960a16ecddbd1ed4852a56a0784638ad.zip
matrixMult
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ae2159d..0bf9d87 100644
--- a/Makefile
+++ b/Makefile
@@ -5,11 +5,14 @@ PREFIX = /usr/local
5 5
6.PHONY: all install 6.PHONY: all install
7 7
8all: temperaturUmrechner 8all: temperaturUmrechner matrixMult
9 9
10install: 10install:
11 mkdir -p $(PREFIX)/bin 11 mkdir -p $(PREFIX)/bin
12 install -m 0755 -t $(PREFIX)/bin temperaturUmrechner 12 install -m 0755 -t $(PREFIX)/bin temperaturUmrechner matrixMult
13 13
14temperaterUmrechner: 14temperaterUmrechner:
15 $(CC) $(INCLUDES) $(CCFLAGS) -o temperaturUmrechner temperaturUmrechner.c 15 $(CC) $(INCLUDES) $(CCFLAGS) -o temperaturUmrechner temperaturUmrechner.c
16
17matrixMult:
18 $(CC) $(INCLUDES) $(CCFLAGS) -o matrixMult matrixMult.c