From 09819bcd940492c8ccc48284880f8bc652a2845a Mon Sep 17 00:00:00 2001 From: kaa Date: Fri, 23 Jun 2023 11:56:56 -0700 Subject: Initial. --- makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..f58cf19 --- /dev/null +++ b/makefile @@ -0,0 +1,24 @@ +CC = cc +#CC = tcc +CFLAGS = -Wall -I/usr/local/include +CFLAGS += -std=c89 +LDFLAGS = -L/usr/local/lib -lhyphen +LDFLAGS += -static +out = hyp +bindir = /home/kaa/bin + +all: $(out) + +.c: + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< + +clean: + rm -f $(out) + +install: all + cp hyp $(bindir)/hyp + cp unhyp $(bindir)/unhyp + +uninstall: + rm -f $(bindir)/hyp + rm -f $(bindir)/unhyp -- cgit 1.4.1-2-gfad0