File: Makefile

package info (click to toggle)
fsp 2.71-8hamm10
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 988 kB
  • ctags: 1,287
  • sloc: ansic: 7,715; makefile: 363; sh: 118
file content (19 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CLIOBJS	= lib.o lock.o util.o

all: libclient.a

libclient.a:${PARALLEL_MAKE} ${CLIOBJS}
	${RM} -f libclient.a
	${AR} ${ARFLAGS} libclient.a ${CLIOBJS}
	${RANLIB} libclient.a

clean:
	${RM} -f *.o *.a

lib.o: lib.c ../include/client_def.h ../include/common_def.h
lib.o: ../include/tweak.h ../include/proto.h
lock.o: lock.c ../include/client_def.h ../include/common_def.h
lock.o:../include/tweak.h ../include/proto.h
util.o: util.c ../include/client_def.h ../include/common_def.h
util.o: ../include/tweak.h ../include/proto.h