1234567891011121314151617181920212223242526272829303132333435363738 |
- OUTPUT_FOLDER = $(basename $@)
- .PHONY : clean
- %.exe : $(p)\%.cpp
- g++ $< -g3 -gdwarf-4 -o $(p)\$(basename $@)\$@
- clean :
- '$(ProgramFiles)/Git/usr/bin/rm.exe' -rf $(p)\$(basename $(f))\$(f)
- url2file.exe : url2file.c url2file/libpng16.dll url2file/libcurl.dll
- g++ $< -L $(ow)/lib/ -I $(ow)/include/ -lcurl -o $(basename $@)/$@
- libharuEXMP.exe : libharuEXMP.cpp libharuEXMP/libpng16.dll libharuEXMP/libhpdf.dll
- g++ $< -L $(ow)/lib/ -I $(ow)/include/ -lhpdf -o $(basename $@)/$@
- %.dll :
- copy $(ow)\bin\$(@F) "$(@D)\"
- cleanPDFtest.exe : cleanPDFtest.cpp cleanPDFtest/libpng16.dll cleanPDFtest/libhpdf.dll
- g++ $< -L $(ow)/lib/ -I $(ow)/include/ -lhpdf -o $(basename $@)/$@
- BasicImageAndText.exe pdfHummusTest1.exe PauseAndContinue.exe :
- g++ -g -I C:/Users/bad-p/Downloads/PDFHummus-build/PDFWriter/include $(@:.exe=.cpp) -L C:/Users/bad-p/Downloads/PDFHummus-build/PDFWriter/objs -lall -o $(basename $@)/$@
- # also make the object file for debugging reasons
- # g++ -I C:/Users/bad-p/Downloads/PDFHummus-build/PDFWriter/include -c $(@:.exe=.cpp) -o $(basename $@)/$(@:.exe=.o)
|