]>
Commit | Line | Data |
---|---|---|
e902b579 PN |
1 | linenoise_example: linenoise.h linenoise.c |
2 | ||
3 | linenoise_example: linenoise.o example.o | |
be98a33b | 4 | $(CC) $(ARCH) -Wall -W -Os -g -o linenoise_example linenoise.o example.o |
e902b579 PN |
5 | |
6 | .c.o: | |
be98a33b | 7 | $(CC) $(ARCH) -c -Wall -W -Os -g $< |
e902b579 PN |
8 | |
9 | clean: | |
be98a33b | 10 | rm -f linenoise_example *.o |