Mercurial > rcctl_linux
comparison Makefile @ 0:e1a1a181c0d7
initial import
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Thu, 16 Dec 2010 20:30:11 +0900 |
parents | |
children | 05cc06e88a57 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e1a1a181c0d7 |
---|---|
1 # $Id: Makefile,v 1.1 2002/12/21 01:13:27 tosy Exp $ | |
2 | |
3 TARGET = rcctl | |
4 SRCS = rcctl.c cdcnv.c | |
5 CC = gcc | |
6 CCOPT = -O -lusb -Wall | |
7 | |
8 all: | |
9 $(CC) $(CCOPT) -o $(TARGET) $(SRCS) | |
10 | |
11 debug: | |
12 $(CC) $(CCOPT) -DVERBOSE -DDEBUG -o $(TARGET) $(SRCS) | |
13 |