root/snippet/console_mine/Makefile

Revision 85, 203 bytes (checked in by aqua, 2 years ago)

add console mine project

Line 
1DEBUG = -DDEBUG -g
2CFLAGS = -O3 -pipe -Wall
3LDFLAGS = -lm
4
5OBJS = libmine.o mine.o
6all: mine
7
8.c.o:
9        gcc -c ${DEBUG} ${CFLAGS} $<
10
11mine: ${OBJS}
12        gcc -o mine ${LDFLAGS} ${OBJS}
13clean:
14        rm mine ${OBJS}
Note: See TracBrowser for help on using the browser.