mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-08-17 17:31:44 +08:00
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
.PHONY: all clean pre-build
|
|
.DEFAULT_GOAL := all
|
|
|
|
CPP_COMPILE_OPTIONS=-I ../../../Import -DVCZH_DEBUG_METAONLY_REFLECTION
|
|
include $(VCPROOT)/vl/makefile-cpp
|
|
|
|
pre-build:
|
|
if ! [ -d ./Bin ]; then mkdir ./Bin; fi
|
|
if ! [ -d ./Obj ]; then mkdir ./Obj; fi
|
|
if ! [ -d ./Coverage ]; then mkdir ./Coverage; fi
|
|
|
|
clean:
|
|
if [ -d ./Bin ]; then rm -r ./Bin; fi
|
|
if [ -d ./Obj ]; then rm -r ./Obj; fi
|
|
if [ -d ./Coverage ]; then rm -r ./Coverage; fi
|
|
|
|
all:pre-build ./Bin/GacGen
|
|
|
|
./Bin/GacGen:./Obj/GacUI.o ./Obj/GacUICompiler.o ./Obj/GacUIReflection.o ./Obj/Vlpp.o ./Obj/Vlpp.Linux.o ./Obj/VlppGlrParser.o ./Obj/VlppOS.o ./Obj/VlppOS.Linux.o ./Obj/VlppReflection.o ./Obj/VlppRegex.o ./Obj/VlppWorkflowCompiler.o ./Obj/VlppWorkflowLibrary.o ./Obj/VlppWorkflowRuntime.o ./Obj/GacGen.o ./Obj/Main.o
|
|
$(CPP_LINK)
|
|
|
|
./Obj/GacUI.o: ../../../Import/GacUI.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/GacUICompiler.o: ../../../Import/GacUICompiler.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/GacUIReflection.o: ../../../Import/GacUIReflection.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/Vlpp.o: ../../../Import/Vlpp.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/Vlpp.Linux.o: ../../../Import/Vlpp.Linux.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppGlrParser.o: ../../../Import/VlppGlrParser.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppOS.o: ../../../Import/VlppOS.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppOS.Linux.o: ../../../Import/VlppOS.Linux.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppReflection.o: ../../../Import/VlppReflection.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppRegex.o: ../../../Import/VlppRegex.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppWorkflowCompiler.o: ../../../Import/VlppWorkflowCompiler.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppWorkflowLibrary.o: ../../../Import/VlppWorkflowLibrary.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/VlppWorkflowRuntime.o: ../../../Import/VlppWorkflowRuntime.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/GacGen.o: GacGen.cpp
|
|
$(CPP_COMPILE)
|
|
|
|
./Obj/Main.o: Main.cpp
|
|
$(CPP_COMPILE)
|