s3:lib/afs fix the build
[Samba/gebeck_regimport.git] / testprogs / win32 / rpcecho / Makefile
blobca0c823eab8181e62f82be0902d3a815862b6d0b
1 INCLUDES=-I
2 CFLAGS=$(INCLUDES) -Zi -nologo
3 LIBS=rpcrt4.lib
5 all: client server
7 clean:
8 del *~ *.obj client server rpcecho_c.c rpcecho_s.c rpcecho.h
10 rpcecho.h rpcecho_s.c rpcecho_c.c: rpcecho.idl rpcecho.acf
11 midl rpcecho.idl
13 client: client.obj rpcecho_c.obj utils.obj
14 $(CC) $(CFLAGS) -o client client.obj rpcecho_c.obj utils.obj $(LIBS)
16 server: server.obj rpcecho_s.obj utils.obj
17 $(CC) $(CFLAGS) -o server server.obj rpcecho_s.obj utils.obj $(LIBS)
19 client.obj: rpcecho.h client.c
20 server.obj: rpcecho.h server.c
21 rpcecho_c.obj: rpcecho.h rpcecho_c.c
22 rpcecho_s.obj: rpcecho.h rpcecho_s.c
23 utils.obj: rpcecho.h utils.c