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