]> git.saurik.com Git - redis.git/blame - deps/linenoise/Makefile
Query the archive to provide a complete KEYS list.
[redis.git] / deps / linenoise / Makefile
CommitLineData
de07849e
PN
1STD=
2WARN= -Wall
3OPT= -Os
4
5R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)
6R_LDFLAGS= $(LDFLAGS)
7DEBUG= -g
8
9R_CC=$(CC) $(R_CFLAGS)
10R_LD=$(CC) $(R_LDFLAGS)
11
12linenoise.o: linenoise.h linenoise.c
e902b579
PN
13
14linenoise_example: linenoise.o example.o
de07849e 15 $(R_LD) -o $@ $^
e902b579
PN
16
17.c.o:
de07849e 18 $(R_CC) -c $<
e902b579
PN
19
20clean:
be98a33b 21 rm -f linenoise_example *.o