diff options
Diffstat (limited to 'algorithms/transducer/Makefile')
-rw-r--r-- | algorithms/transducer/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/algorithms/transducer/Makefile b/algorithms/transducer/Makefile new file mode 100644 index 0000000..d747166 --- /dev/null +++ b/algorithms/transducer/Makefile @@ -0,0 +1,24 @@ +CFLAGS += -Wall -std=gnu99 -pedantic -g + +.PHONY: all depend clean check install + +SRCS = transducer.c +OBJS = transducer.o + +all: transducer + +main: $(OBJS) + $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ + +depend: + makedepend -s "# makedepend depends on me"\ + -- $(CFLAGS) -- $(SRCS) + +clean: + rm -f $(OBJS) transducer + +check: + @echo "No checks defined, sorry" + +install: + @echo "Nothing to install yet" |