root/btree/src/Makefile
| Revision 55, 211 bytes (checked in by aqua, 4 years ago) |
|---|
| Line | |
|---|---|
| 1 | DEBUG = -DDEBUG -g |
| 2 | CFLAGS = -O3 -pipe -Wall |
| 3 | |
| 4 | all: test btree |
| 5 | |
| 6 | .c.o: |
| 7 | gcc -c ${DEBUG} $< |
| 8 | |
| 9 | test: test.o |
| 10 | gcc -o test test.o |
| 11 | |
| 12 | btree: btree.o |
| 13 | gcc -o btree btree.o |
| 14 | |
| 15 | clean: |
| 16 | rm test.o btree.o btree test test.idx |
Note: See TracBrowser
for help on using the browser.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)