Remove sigmoid, threshold, and linear Makefile targets

This commit is contained in:
Lewis Van Winkle
2026-08-05 01:26:47 -05:00
parent 4317d8fc98
commit a62aaa48bc

View File

@@ -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)