mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 16:48:27 -05: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
|