summaryrefslogtreecommitdiff
path: root/Makefile
blob: b541a2bd0643a7a9af4fec016eb82a43e41641f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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)