xlhtml/Makefile.vc

24 lines
376 B
Makefile
Raw Normal View History

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