Mercurial > hg > minimon
changeset 5:fda7d3eda190
fix include in Makefile
author | Peter Meerwald <pmeerw@pmeerw.net> |
---|---|
date | Tue, 10 May 2011 18:53:02 +0200 |
parents | 5ff6a67e1421 |
children | 3819ecaf0f14 |
files | Makefile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Mon May 09 23:32:51 2011 +0200 +++ b/Makefile Tue May 10 18:53:02 2011 +0200 @@ -1,10 +1,10 @@ all: minimon fbt minimon: minimon.c jpg.c - $(CC) $(CFLAGS) -Wall -g -o $@ minimon.c jpg.c fb.c -lusb -ljpeg + $(CC) $(CFLAGS) -I. -Wall -g -o $@ minimon.c jpg.c fb.c -lusb -ljpeg fbt: fbt.c jpg.c - $(CC) $(CFLAGS) -O0 -Wall -g -o $@ fbt.c jpg.c -ljpeg + $(CC) $(CFLAGS) -I. -Wall -g -o $@ fbt.c jpg.c -ljpeg clean: rm -f minimon