From 09819bcd940492c8ccc48284880f8bc652a2845a Mon Sep 17 00:00:00 2001 From: kaa Date: Fri, 23 Jun 2023 11:56:56 -0700 Subject: Initial. --- win/makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 win/makefile (limited to 'win/makefile') diff --git a/win/makefile b/win/makefile new file mode 100644 index 0000000..fc6ebc0 --- /dev/null +++ b/win/makefile @@ -0,0 +1,14 @@ +CC = gcc +CFLAGS = -Wall -I. +CFLAGS += -fdiagnostics-color=never -std=c89 +LDFLAGS = -L. -lhyphen +DLL = libhyphen.a +out = hyp + +all: $(out) + +.c: + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(DLL) + +clean: + rm -f $(out) -- cgit v1.2.3