aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2021-10-05 18:22:23 -0400
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commitcf175fc346f1b208766b1f55d3673a7b208f322a (patch)
tree3dabfd672b73e7d0756d8259e59464d1f560aee6 /Makefile
parent640d404b3cf3324aca4424fc3da4806d4562d0e4 (diff)
Welcome geminict!
This is a special interface to negamax_cnn1986 which is designed to generate output for use in a CGI tak interface to be used over gemini. Also in this commit is a reformating of the various source files to use the traditional tab width of 8 spaces.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8b4ab58..a7a1791 100644
--- a/Makefile
+++ b/Makefile
@@ -16,6 +16,9 @@ CROSS_STRIP=$(BUILDROOT_DIR)/output/host/bin/arm-linux-strip
%.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)
+geminict: src/geminict.o $(OBJS)
+ $(CC) $(CFLAGS) src/geminict.o $(OBJS) -o geminict
+
ctlm: src/ctlm.o $(OBJS)
$(CC) $(CFLAGS) src/ctlm.o $(OBJS) -o ctlm
@@ -26,10 +29,10 @@ pptdb: src/pptdb.o $(CTAK_OBJS)
$(CC) $(CFLAGS) src/pptdb.o $(CTAK_OBJS) -o pptdb
clean:
- rm -f ctlm ct1986 cttei pptdb
+ rm -f ctlm ct1986 cttei pptdb geminict
rm -f src/*.o include/*.o
-native: clean ctlm cttei
+native: clean ctlm cttei geminict
$(CROSS_CC):
./resources/do_buildroot.sh $(BUILDROOT_DIR)