Initial import of Scalos. To decrease size I have
[AROS-Contrib.git] / scalos / main / Tools / config.mk
blob010654b7cf89f48ffff6ad2057975de97a369441
1 # $Date: 2011-06-21 23:00:20 +0200 (Di, 21. Jun 2011) $
2 # $Revision: 714 $
3 ##############################################################################
5 include $(TOPLEVEL)/config.mk
6 include $(TOPLEVEL)/rules.mk
8 ##############################################################################
10 INT64_DIR = $(TOPLEVEL)/common/Int64
11 FS_DIR = $(TOPLEVEL)/common/Fs
13 vpath %.c $(INT64_DIR) $(FS_DIR)
15 ##############################################################################
17 INCLUDES += -I$(INT64_DIR) \
18 -I$(FS_DIR) \
20 ##############################################################################
21 # Check gcc
23 ifeq ($(MACHINE), ppc-morphos)
25 ###############################################################################
26 # MorphOS
28 INCLUDES +=
30 LFLAGS += #
33 else
34 ifeq ($(MACHINE), ppc-amigaos)
36 ###############################################################################
37 # AmigaOS4
39 INCLUDES +=
41 LFLAGS += #
43 else
44 ifeq ($(MACHINE), i386-aros)
46 ###############################################################################
47 # i386-aros
49 INCLUDES +=
51 LFLAGS += #
54 else
56 ###############################################################################
57 # AmigaOS
59 INCLUDES +=
61 LFLAGS += -lstack \
62 -lnix \
63 -lnixmain \
64 -lamiga21 \
65 -lamiga \
66 -lstubs
68 endif
69 endif
70 endif