mirror of
https://github.com/fluencelabs/redis
synced 2025-03-26 12:21:04 +00:00
11 lines
220 B
Makefile
11 lines
220 B
Makefile
|
linenoise_example: linenoise.h linenoise.c
|
||
|
|
||
|
linenoise_example: linenoise.o example.o
|
||
|
$(CC) -Wall -W -Os -g -o linenoise_example linenoise.o example.o
|
||
|
|
||
|
.c.o:
|
||
|
$(CC) -c -Wall -W -Os -g $<
|
||
|
|
||
|
clean:
|
||
|
rm -f linenoise_example
|