ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/tags/start/dp/Makefile
Revision: 3484
Committed: Tue Jan 13 14:39:51 2009 UTC (15 years, 8 months ago)
File size: 155 byte(s)
Log Message:
This commit was manufactured by cvs2svn to create tag 'start'.

File Contents

# User Rev Content
1 xsun 581 CC = icc
2     CFLAGS = -g
3     LIBADD = -lm
4    
5     OBJS = dp.o
6    
7     dp : ${OBJS}
8     ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBADD}
9    
10     dp.o : dp.c
11     ${CC} -c dp.c
12    
13     clean :
14     rm *.o *~ ./dp