From a62aaa48bcf999eb6d9a1c60b63fafc3f64d6bb8 Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Wed, 5 Aug 2026 01:26:47 -0500 Subject: [PATCH] Remove sigmoid, threshold, and linear Makefile targets --- Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 2be8a86..3c1c22d 100644 --- a/Makefile +++ b/Makefile @@ -3,15 +3,6 @@ LDLIBS = -lm all: check example1 example2 example3 example4 -sigmoid: CFLAGS += -Dgenann_act=genann_act_sigmoid_cached -sigmoid: all - -threshold: CFLAGS += -Dgenann_act=genann_act_threshold -threshold: all - -linear: CFLAGS += -Dgenann_act=genann_act_linear -linear: all - test: test.o genann.o check: test @@ -30,6 +21,6 @@ clean: $(RM) test example1 example2 example3 example4 *.exe $(RM) persist.txt -.PHONY: sigmoid threshold linear clean +.PHONY: clean -include $(wildcard *.d)