spiegel-keyman/common/windows/delphi/ext/tds2dbg/Makefile
Marc Durdin 0a1d4b6241 chore(windows): move unicodedata to common
Also makes common/windows/bin/tools more consistent.
2022-06-10 13:26:07 +10:00

37 lines
1,023 B
Makefile

!include ..\..\Defines.mak
build:
-mkdir $(WIN32_TARGET_PATH)
$(COPY) tds2dbg.bin $(WIN32_TARGET_PATH)\tds2dbg.exe
$(MAKE) install
install:
-mkdir $(KEYMAN_ROOT)\common\windows\bin\tools
$(COPY) $(WIN32_TARGET_PATH)\tds2dbg.exe $(KEYMAN_ROOT)\common\windows\bin\tools
#
# The following builds require Borland C++ compiler to be installed and in the path; see Readme.txt for details.
# So, the tds2dbg.bin is kept in the repo in order to make builds simpler
#
BCC55DIR=c:\borland\bcc55
tds2dbg.exe: main.cpp tds2dbg.cpp fileutils.cpp log.cpp
# $(CL) /Fe$< /EHsc $**
path $(BCC55DIR)\bin;$(PATH)
$(BCC55DIR)\bin\bcc32 -y -v -L$(BCC55DIR)\Lib -I$(BCC55DIR)\Include -e$< $**
test.exe: testa.cpp
# $(CL) /Fe$< /EHsc $**
$(BCC55DIR)\bin\bcc32 -y -v -M -L$(BCC55DIR)\Lib -I$(BCC55DIR)\Include -e$< $**
clean:
-del /Q tds2dbg.obj fileutils.obj log.obj main.obj tds2dbg.tds
-del /Q testa.obj test.exe test.tds test.dbg
-rmdir /S /Q html
doc:
doxygen tds2dbg.dcf
!include ..\..\Target.mak