summary refs log tree commit diff stats
path: root/win/makefile
diff options
context:
space:
mode:
authorkaa <kaa@laptosh.my.domain>2023-06-23 11:56:56 -0700
committerkaa <kaa@laptosh.my.domain>2023-06-23 11:56:56 -0700
commit09819bcd940492c8ccc48284880f8bc652a2845a (patch)
tree89f5425d6907b111afd74142866440fba9bced0c /win/makefile
downloadhyp-09819bcd940492c8ccc48284880f8bc652a2845a.tar.gz
Initial. 1.0
Diffstat (limited to 'win/makefile')
-rw-r--r--win/makefile14
1 files changed, 14 insertions, 0 deletions
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)