mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:04:52 +00:00
11 lines
240 B
Makefile
11 lines
240 B
Makefile
linenoise_example: linenoise.h linenoise.c
|
|
|
|
linenoise_example: linenoise.o example.o
|
|
$(CC) $(ARCH) -Wall -W -Os -g -o linenoise_example linenoise.o example.o
|
|
|
|
.c.o:
|
|
$(CC) $(ARCH) -c -Wall -W -Os -g $<
|
|
|
|
clean:
|
|
rm -f linenoise_example *.o
|