Removed debugging statements from v4l1_read
[v4l1_capture.git] / Makefile
blob62ae08bb1345c9855dac8840779e13b29db708f9
1 PREFIX=/usr/local/
2 CFLAGS=-pg -g
3 LDFLAGS=-lfusd -lpthread
4 CC=gcc
6 all: v4l1_capture
8 v4l1_capture: v4l1_capture.c
9 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ v4l1_capture.c
11 install: all
12 install -d $(PREFIX)
13 install -d $(PREFIX)/bin
14 install -m 755 v4l1_capture $(PREFIX)/bin
16 uninstall:
17 rm -f $(PREFIX)/bin/v4l1_capture
19 clean:
20 rm -f v4l1_capture
21 rm -f *.o