From acf9238af56b7876048ba1178aa1b0f3949e3ffc Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 4 Mar 2023 22:58:17 -0500 Subject: quick and dirty implementation --- Makefile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b541a2b --- /dev/null +++ b/Makefile @@ -0,0 +1,34 @@ +.POSIX: + +# This Makefile was generated by maje +# See https://src.kaivo.net/dev/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) +LIBDIR=$(OBJDIR) +DESTDIR=/usr/local + +all: $(BINDIR)/plaintext + +clean: + rm -f $(BINDIR)/plaintext $(OBJDIR)/*.o + +install: $(BINDIR)/plaintext + mkdir -p $(DESTDIR)/bin + cp $(BINDIR)/plaintext $(DESTDIR)/bin + +$(BINDIR)/plaintext: $(OBJDIR)/plaintext.o +$(OBJDIR)/plaintext.o: $(SRCDIR)/plaintext.c + @mkdir -p $(@D) + $(CC) $(CFLAGS) -o $@ -c $(SRCDIR)/plaintext.c + +$(BINDIR)/plaintext: + @mkdir -p $(@D) + $(LD) $(LDFLAGS) -o $@ $(OBJDIR)/*.o $(LDLIBS) -- cgit v1.2.1