Mercurial > rcctl_linux
annotate Makefile @ 1:05cc06e88a57
modified to make use of libhid to access the device
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Fri, 24 Dec 2010 15:28:04 +0900 |
parents | e1a1a181c0d7 |
children | b16b82dbfe87 |
rev | line source |
---|---|
0 | 1 # $Id: Makefile,v 1.1 2002/12/21 01:13:27 tosy Exp $ |
2 | |
3 TARGET = rcctl | |
4 SRCS = rcctl.c cdcnv.c | |
1
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
5 OBJS = rcctl.o cdcnv.o |
0 | 6 CC = gcc |
7 | |
1
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
8 # for debug build |
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
9 CFLAGS = -O -Wall -g -DVERBOSE -DDEBUG -I/usr/include/libusb-1.0 |
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
10 # for release build |
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
11 #CFLAGS = -O -Wall |
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
12 LDFLAGS = -lhid -lusb |
0 | 13 |
1
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
14 all: $(OBJS) |
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
15 $(CC) -o $(TARGET) $(OBJS) $(LDFLAGS) |
0 | 16 |
1
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
17 clean: |
05cc06e88a57
modified to make use of libhid to access the device
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
18 rm -f *.o $(TARGET) |