aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-05-27 20:01:51 +0200
committerMattias Andrée <maandree@kth.se>2020-05-27 20:01:51 +0200
commitec04bfbd248c58ccda8cda3df785b86252efb707 (patch)
treef4a8b88fad6f7bcd44f9e952f3163a95f0fb1604 /Makefile
downloadsctrace-ec04bfbd248c58ccda8cda3df785b86252efb707.tar.gz
sctrace-ec04bfbd248c58ccda8cda3df785b86252efb707.tar.bz2
sctrace-ec04bfbd248c58ccda8cda3df785b86252efb707.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1a3ac27
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+.POSIX:
+
+CONFIGFILE = config.mk
+include $(CONFIGFILE)
+
+all: sctrace
+
+sctrace: sctrace.c
+ $(CC) -o $@ $@.c $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
+
+install: sctrace
+ mkdir -p -- "$(DESTDIR)$(PREFIX)/bin"
+ cp -- sctrace "$(DESTDIR)$(PREFIX)/bin"
+
+uninstall:
+ -rm -f -- "$(DESTDIR)$(PREFIX)/bin/sctrace"
+
+clean:
+ -rm -f -- *.o sctrace
+
+.PHONY: all install uninstall clean