Add Makefile to bcc32

git-svn-id: svn://kolibrios.org@8141 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
maxcodehack 2020-11-06 13:21:31 +00:00
parent cd50f4af3c
commit eb45285dfe
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
SVN_BCC32:=..
T2FASM:=$(SVN_BCC32)/t2fasm
INCLUDE:=$(SVN_BCC32)/include
# Path to Bin folder
KOS32_BCC:=/home/autobuild/borlandcpp/bin
# Filename
FN:=hello
hello_world:
wine $(KOS32_BCC)/kos32-bcc -S -v- -R- -6 -a4 -O2 -Og -Oi -Ov -OS -k- -D__KOLIBRI__ -I$(INCLUDE) $(FN).cpp
echo 'include "kos_make.inc"' > f_$(FN).asm
$(T2FASM)/t2fasm < $(FN).asm >> f_$(FN).asm
fasm f_$(FN).asm $(FN).kex
rm f_$(FN).asm
rm $(FN).asm

BIN
programs/bcc32/examples/hello.kex Executable file

Binary file not shown.