summaryrefslogtreecommitdiff
path: root/privexec/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2021-02-01 10:49:11 -0500
committerJakob Kaivo <jkk@ung.org>2021-02-01 10:49:11 -0500
commit08c30d1a3d2256b2e613c4d5d8c68d6819be6a85 (patch)
tree4c92babc0d7c263b6a4e91f48e26e159a4d3dbf2 /privexec/Makefile
parentb85457d8773990791c9d202bd9ca52c9f6f034cd (diff)
first draft of front-end
Diffstat (limited to 'privexec/Makefile')
-rw-r--r--privexec/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/privexec/Makefile b/privexec/Makefile
new file mode 100644
index 0000000..26cafe6
--- /dev/null
+++ b/privexec/Makefile
@@ -0,0 +1,26 @@
+.POSIX:
+
+# This Makefile was generated by maje
+# See https://gitlab.com/jkaivo/maje/ for more information
+# Do not edit this Makefile by hand
+
+CC=c99
+LD=$(CC)
+CFLAGS=-Wall -Wextra -Wpedantic -Werror -g
+LDFLAGS=
+LDLIBS=
+SRCDIR=.
+OBJDIR=.
+BINDIR=$(OBJDIR)
+
+all: $(BINDIR)/privexec
+
+clean:
+ rm -f $(BINDIR)/privexec $(OBJDIR)/*.o
+
+$(BINDIR)/privexec: $(OBJDIR)/privexec.o
+$(OBJDIR)/privexec.o: $(SRCDIR)/privexec.c
+ $(CC) $(CFLAGS) -o $@ -c $(SRCDIR)/privexec.c
+
+$(BINDIR)/privexec:
+ $(LD) $(LDFLAGS) -o $@ $(OBJDIR)/*.o $(LDLIBS)