ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
group
/
trunk
/
dp
/
Makefile
Revision:
581
Committed:
Wed Jul 9 15:14:05 2003 UTC
(21 years, 10 months ago) by
xsun
File size:
155 byte(s)
Log Message:
This is the dp and read file
File Contents
#
Content
1
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