root/snippet/rotation_3d/Makefile

Revision 81, 240 bytes (checked in by aqua, 3 years ago)

initial import

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