root/btree/src/Makefile

Revision 55, 211 bytes (checked in by aqua, 4 years ago)

reimport old stuffes

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