|
root / base / usr / src / boot / common / linenoise / Makefile
Makefile Makefile 8 lines 184 B
1
2
3
4
5
6
7
linenoise_example: linenoise.h linenoise.c

linenoise_example: linenoise.c example.c
	$(CC) -Wall -W -Os -g -o linenoise_example linenoise.c example.c

clean:
	rm -f linenoise_example