diff options
| author | Jakob Kaivo <jkk@ung.org> | 2021-02-01 10:49:11 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2021-02-01 10:49:11 -0500 |
| commit | 08c30d1a3d2256b2e613c4d5d8c68d6819be6a85 (patch) | |
| tree | 4c92babc0d7c263b6a4e91f48e26e159a4d3dbf2 /privexec/Makefile | |
| parent | b85457d8773990791c9d202bd9ca52c9f6f034cd (diff) | |
first draft of front-end
Diffstat (limited to 'privexec/Makefile')
| -rw-r--r-- | privexec/Makefile | 26 |
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) |
