From 7f598bac4639258ec66cbb572a625f85cfa1c77e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Mon, 9 May 2022 23:00:43 -0400 Subject: initial commit --- 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..032c251 --- /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= -lX11 +SRCDIR=. +OBJDIR=. +BINDIR=$(OBJDIR) +LIBDIR=$(OBJDIR) +DESTDIR=/usr/local + +all: $(BINDIR)/xsnap + +clean: + rm -f $(BINDIR)/xsnap $(OBJDIR)/*.o + +install: $(BINDIR)/xsnap + mkdir -p $(DESTDIR)/bin + cp $(BINDIR)/xsnap $(DESTDIR)/bin + +$(BINDIR)/xsnap: $(OBJDIR)/xsnap.o +$(OBJDIR)/xsnap.o: $(SRCDIR)/xsnap.c + @mkdir -p $(@D) + $(CC) $(CFLAGS) -o $@ -c $(SRCDIR)/xsnap.c + +$(BINDIR)/xsnap: + @mkdir -p $(@D) + $(LD) $(LDFLAGS) -o $@ $(OBJDIR)/*.o $(LDLIBS) -- cgit v1.2.1