Added cybergfx

git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@6674 fb15a70f-31f2-0310-bbcc-cdcc74a49acc
This commit is contained in:
nlorentz 2000-01-02 22:10:05 +00:00
parent a3385d2446
commit 31fadb4de1
6 changed files with 47 additions and 4 deletions

View File

@ -42,6 +42,7 @@ extern const struct Resident
Input_resident,
Intuition_resident,
X11Hidd_resident,
Cybergraphics_resident,
Console_resident,
Mathffp_resident,
Workbench_resident,
@ -74,6 +75,7 @@ static const struct Resident *romtagList[] =
&Input_resident, /* ColdStart, 30 */
&Intuition_resident, /* ColdStart, 10 */
&X11Hidd_resident, /* ColdStart, 9 */
&Cybergraphics_resident, /* ColdStart, 8 */
&Console_resident, /* ColdStart, 5 */
&emul_handler_resident, /* ColdStart, 0 */
&boot_resident, /* ColdStart, -50 */

View File

@ -18,8 +18,8 @@ CFLAGS2 := $(SHARED_CFLAGS) -I/$(TOP)/rom/exec $(CFLAGS)
#MM kernel-keymap-linklib \
#MM kernel-mathffp-linklib kernel-mathieeesingbas-linklib \
#MM kernel-timer-linklib kernel-utility-freebsd kernel-oop-linklib \
#MM kernel-layers-linklib kernel-workbench-linklib
#MM kernel-layers-linklib kernel-workbench-linklib \
#MM kernel-cgfx-linklib
# Setup the CLIB metatargets...
#MM- setup-clib-freebsd : setup-clib-freebsd-i386

View File

@ -43,6 +43,7 @@ extern const struct Resident
Input_resident,
Intuition_resident,
X11Hidd_resident,
Cybergraphics_resident,
Console_resident,
Mathffp_resident,
Mathieeesingbas_resident,
@ -77,6 +78,7 @@ static const struct Resident *romtagList[] =
&Input_resident, /* ColdStart, 30 */
&Intuition_resident, /* ColdStart, 10 */
&X11Hidd_resident, /* ColdStart, 9 */
&Cybergraphics_resident, /* ColdStart, 8 */
&Console_resident, /* ColdStart, 5 */
&emul_handler_resident, /* ColdStart, 0 */
&Workbench_resident, /* ColdStart, -120 */

View File

@ -30,7 +30,8 @@ CFLAGS2 := $(SHARED_CFLAGS) -I/$(TOP)/rom/exec \
#MM kernel-battclock-linux \
#MM kernel-oop-linklib \
#MM kernel-layers-linklib \
#MM kernel-workbench-linklib
#MM kernel-workbench-linklib \
#MM kernel-cgfx-linklib
# Setup the CLIB metatargets...
#MM- setup-clib-linux : setup-clib-linux-$(CPU)

31
make.defaults Normal file
View File

@ -0,0 +1,31 @@
# Copyright (C) 1995-1998 AROS
# $Id$
#
# Desc: Some options for the make
# DO NOT EDIT THIS FILE.
# Instead create a file make.opts in the *same directory* and
# put the options you need in there.
# Do we build the libraries shared (.so = yes) or static (.a = no)
SHARED_EXEC = yes
SHARED_DOS = yes
SHARED_UTILITY = yes
SHARED_GRAPHICS = yes
SHARED_INTUITION = yes
SHARED_LAYERS = yes
SHARED_MATHFFP = yes
SHARED_MATHIEEESINGBAS = yes
SHARED_EXPANSION = yes
SHARED_WORKBENCH = yes
SHARED_BOOPSI = yes
SHARED_AROS = yes
SHARED_TIMER = yes
SHARED_BATTCLOCK = yes
SHARED_BOOT = yes
SHARED_OOP = yes
SHARED_CGFX = yes
# Include debugging information (so you can use gdb or similar)
DEBUG = yes

View File

@ -132,6 +132,11 @@ DEPLIB_OOP=$(LIBDIR)/liboop.so
else
DEPLIB_OOP=$(LIBDIR)/liboop.a
endif
ifeq ("$(SHARED_CGFX)","yes")
DEPLIB_CGFX=$(LIBDIR)/libcybergraphics.so
else
DEPLIB_CGFX=$(LIBDIR)/libcybergraphics.a
endif
DEP_LIBS= $(DEPLIB_AMIGAOS) \
$(GENDIR)/filesys/emul_handler.o \
@ -153,6 +158,7 @@ DEP_LIBS= $(DEPLIB_AMIGAOS) \
$(DEPLIB_BOOT) \
$(DEPLIB_TIMER) \
$(DEPLIB_BATTCLOCK) \
$(DEPLIB_CGFX) \
$(LIBDIR)/libconsole.a \
$(LIBDIR)/libinput.a \
$(LIBDIR)/libkeymap.a \
@ -168,7 +174,8 @@ LIBS=-L$(LIBDIR) \
-lhiddclass -lunixiocl -lboopsi -lutility -ltimer \
-laros -lmathffp -lmathieeesingbas -lexpansion -lbattclock \
-lamiga -larossupport -linput -lkeymap -loop -lx11cl \
-lhiddgraphicsstubs -lkeyboard -lgameport -lworkbench -lcon_handler
-lhiddgraphicsstubs -lkeyboard -lgameport -lworkbench -lcon_handler \
-lcybergraphics
# BEGIN_DESC{internaltarget}
# \item{$(BINDIR)/arosshell} Create the AROS shell for systems which