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
+24
View File
@@ -0,0 +1,24 @@
all: config.h
cd cole
$(MAKE) -f Makefile.vc all
cd ..\xlhtml
$(MAKE) -f Makefile.vc all
cd ..\ppthtml
$(MAKE) -f Makefile.vc all
cd ..
clean:
-del config.h
cd cole
$(MAKE) -f Makefile.vc clean
cd ..\xlhtml
$(MAKE) -f Makefile.vc clean
cd ..\ppthtml
$(MAKE) -f Makefile.vc clean
cd ..
config.h: config.h.in
copy $? $@
echo #define VERSION "0.5" >> $@
# eof