diff options
Diffstat (limited to '')
-rw-r--r-- | deps/linenoise/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/deps/linenoise/Makefile b/deps/linenoise/Makefile new file mode 100644 index 0000000..1dd894b --- /dev/null +++ b/deps/linenoise/Makefile @@ -0,0 +1,21 @@ +STD= +WARN= -Wall +OPT= -Os + +R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) +R_LDFLAGS= $(LDFLAGS) +DEBUG= -g + +R_CC=$(CC) $(R_CFLAGS) +R_LD=$(CC) $(R_LDFLAGS) + +linenoise.o: linenoise.h linenoise.c + +linenoise_example: linenoise.o example.o + $(R_LD) -o $@ $^ + +.c.o: + $(R_CC) -c $< + +clean: + rm -f linenoise_example *.o |