mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05: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
|