Mercurial > rcctl_linux
diff Makefile @ 0:e1a1a181c0d7
initial import
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Thu, 16 Dec 2010 20:30:11 +0900 |
parents | |
children | 05cc06e88a57 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Thu Dec 16 20:30:11 2010 +0900 @@ -0,0 +1,13 @@ +# $Id: Makefile,v 1.1 2002/12/21 01:13:27 tosy Exp $ + +TARGET = rcctl +SRCS = rcctl.c cdcnv.c +CC = gcc +CCOPT = -O -lusb -Wall + +all: + $(CC) $(CCOPT) -o $(TARGET) $(SRCS) + +debug: + $(CC) $(CCOPT) -DVERBOSE -DDEBUG -o $(TARGET) $(SRCS) +