part 2 of Benjamin's Windows patches - forgot to add new files last time

This commit is contained in:
vdvo
2002-05-27 16:59:54 +00:00
parent 79fe4b68df
commit d1d97c3b73
9 changed files with 205 additions and 0 deletions

19
ppthtml/Makefile.vc Normal file
View File

@@ -0,0 +1,19 @@
CFLAGS = /nologo /DWIN32=1 /I.. /I..\cole
LDFLAGS = /nologo
LIBCOLE = ..\cole\cole.lib
all: ppthtml.exe pptdump.exe
clean:
-del *.obj
-del *.exe
ppthtml.exe: ppthtml.obj $(OBJECTS)
$(CC) $(LDFLAGS) ppthtml.obj $(LIBCOLE)
pptdump.exe: pptdump.obj $(OBJECTS)
$(CC) $(LDFLAGS) pptdump.obj $(LIBCOLE)
# eof