diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 24 |
1 files changed, 24 insertions, 0 deletions
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 |