created while adding ReadPropertyMultiple service

This commit is contained in:
skarg
2005-06-24 12:41:42 +00:00
parent fb8d423bde
commit f081bf3cf2
3 changed files with 559 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#Makefile to build test case
CC = gcc
BASEDIR = .
#CFLAGS = -Wall -I.
# -g for debugging with gdb
#CFLAGS = -Wall -I. -g
CFLAGS = -Wall -I. -Itest -DTEST -DTEST_RPM -g
SRCS = bacdcode.c \
bigend.c \
device.c \
rpm.c \
test/ctest.c
OBJS = ${SRCS:.c=.o}
TARGET = rpm
all: ${TARGET}
${TARGET}: ${OBJS}
${CC} -o $@ ${OBJS}
.c.o:
${CC} -c ${CFLAGS} $*.c -o $@
depend:
rm -f .depend
${CC} -MM ${CFLAGS} *.c >> .depend
clean:
rm -rf core ${TARGET} $(OBJS) *.bak *.1 *.ini
include: .depend