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