diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-10-16 10:28:33 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-10-16 10:29:07 +0200 |
commit | 1cf404fcb59de88ab9929987944aa7e8289760fc (patch) | |
tree | 1f893ab7156c452905d0a2d4f89ddb02379e0643 /testprogs/win32 | |
parent | e31b9e0f663c442d2c65b56a755e5b37ed0cb368 (diff) | |
download | samba-1cf404fcb59de88ab9929987944aa7e8289760fc.tar.gz samba-1cf404fcb59de88ab9929987944aa7e8289760fc.tar.bz2 samba-1cf404fcb59de88ab9929987944aa7e8289760fc.zip |
testprogs/win32/midltests: add missing Makefile
metze
Diffstat (limited to 'testprogs/win32')
-rw-r--r-- | testprogs/win32/midltests/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testprogs/win32/midltests/Makefile b/testprogs/win32/midltests/Makefile new file mode 100644 index 0000000000..535968b16d --- /dev/null +++ b/testprogs/win32/midltests/Makefile @@ -0,0 +1,27 @@ +INCLUDES=-I +CFLAGS=$(INCLUDES) -Zi -D_WIN32_WINNT=0x502 +LIBS=rpcrt4.lib + +all: midltests.exe + +clean: + del *~ *.obj *.exe midltests.h midltests_s.c midltests_c.c + +#MIDL_ARGS=/target NT50 +MIDL_ARGS=/Os /prefix client cli_ /prefix server srv_ /prefix switch swi_ +midltests.h midltests_s.c midltests_c.c: midltests.idl midltests.acf + midl $(MIDL_ARGS) /acf midltests.acf midltests.idl + +MIDLTESTS_OBJ = midltests.obj midltests_s_m.obj midltests_c_m.obj midltests_marshall.obj utils.obj +midltests.exe: $(MIDLTESTS_OBJ) + $(CC) -o midltests.exe $(MIDLTESTS_OBJ) $(LIBS) + +midltests.obj: midltests.h midltests.idl +midltests_c_m.c: midltests_c.c +midltests_s_m.c: midltests_s.c + +midltests.obj: midltests.h midltests.idl midltests.c +midltests_s_m.obj: midltests_marshall.h midltests_s.c midltests_s_m.c +midltests_c_m.obj: midltests_marshall.h midltests_c.c midltests_c_m.c +midltests_marshall.obj: midltests.h midltests_marshall.c +utils.obj: midltests.h utils.c |