Files
xlhtml/Makefile.vc
2025-07-11 22:04:45 -05:00

24 lines
399 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