forked from KolibriOS/kolibrios
add&fix TinyBasic
git-svn-id: svn://kolibrios.org@7141 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
d74401a2fc
commit
48d37496a2
28
programs/develop/tinybasic/Makefile
Normal file
28
programs/develop/tinybasic/Makefile
Normal file
@ -0,0 +1,28 @@
|
||||
CC = kos32-gcc
|
||||
LD = kos32-ld
|
||||
|
||||
SDK_DIR:= $(abspath ../../../contrib/sdk)
|
||||
|
||||
LDFLAGS = -static -S -nostdlib -T $(SDK_DIR)/sources/newlib/app.lds --image-base 0
|
||||
|
||||
CFLAGS = -c -fno-ident -O2 -fomit-frame-pointer -U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32
|
||||
|
||||
INCLUDES= -I $(SDK_DIR)/sources/newlib/libc/include
|
||||
LIBPATH:= -L $(SDK_DIR)/lib -L /home/autobuild/tools/win32/mingw32/lib
|
||||
|
||||
SOURCES = TinyBasic.c \
|
||||
$(NULL)
|
||||
|
||||
OUTFILE= TinyBasic
|
||||
|
||||
OBJECTS = $(patsubst %.c, %.o, $(SOURCES))
|
||||
|
||||
default: hello
|
||||
|
||||
hello: $(OBJECTS)
|
||||
$(LD) $(LDFLAGS) $(LIBPATH) -o $(OUTFILE) $(OBJECTS) -lgcc -lc.dll -lapp -lgcc_eh -Map=$(OUTFILE).map
|
||||
kos32-strip $(OUTFILE)
|
||||
kos32-objcopy $(OUTFILE) -O binary
|
||||
|
||||
%.o : %.c $(SOURCES)
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<
|
1540
programs/develop/tinybasic/TBuserMan.txt
Normal file
1540
programs/develop/tinybasic/TBuserMan.txt
Normal file
File diff suppressed because it is too large
Load Diff
1541
programs/develop/tinybasic/TinyBasic.c
Normal file
1541
programs/develop/tinybasic/TinyBasic.c
Normal file
File diff suppressed because it is too large
Load Diff
3
programs/develop/tinybasic/make_tcc.bat
Normal file
3
programs/develop/tinybasic/make_tcc.bat
Normal file
@ -0,0 +1,3 @@
|
||||
:also using tcc can be compiled in Kolibri
|
||||
|
||||
kos32-tcc.exe TinyBasic.c -lck
|
Loading…
Reference in New Issue
Block a user