From cf4e57281b867878521d6f38ec5b0f552c4d2c90 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 28 Sep 2010 10:50:05 +0200 Subject: midltests: move the current implementation to midltests_simple.exe metze --- testprogs/win32/midltests/Makefile | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) (limited to 'testprogs/win32/midltests/Makefile') diff --git a/testprogs/win32/midltests/Makefile b/testprogs/win32/midltests/Makefile index 535968b16d..6eeadeb7b7 100644 --- a/testprogs/win32/midltests/Makefile +++ b/testprogs/win32/midltests/Makefile @@ -1,27 +1,12 @@ -INCLUDES=-I -CFLAGS=$(INCLUDES) -Zi -D_WIN32_WINNT=0x502 -LIBS=rpcrt4.lib -all: midltests.exe +all: + @echo "nmake targets:" + @echo " clean" + @echo " simple" clean: - del *~ *.obj *.exe midltests.h midltests_s.c midltests_c.c + @call nmake /f Makefile.simple /NOLOGO clean -#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 +simple: + @call nmake /f Makefile.simple /NOLOGO all -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 -- cgit