24 lines
376 B
Makefile
24 lines
376 B
Makefile
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
|