Rename hdaudio.c to main.c: on case insensitive filesystems, hdaudio.o
[AROS.git] / config / make.cfg.in
blob38c8505f13f8cedb6bd31bf72996efd52a841a3a
1 # Copyright © 1995-2011, The AROS Development Team. All rights reserved.
2 # $Id$
4 # Static makefile rule file for AROS.
6 ifneq ($(AROS_TARGET_VARIANT),)
7 AROS_TARGET_SUFFIX=-$(AROS_TARGET_VARIANT)
8 else
9 AROS_TARGET_SUFFIX=
10 endif
12 # All files corresponding to a specific host go here.
13 HOSTDIR     := $(TOP)/bin/$(AROS_HOST_ARCH)-$(AROS_HOST_CPU)
14 TOOLDIR     := $(HOSTDIR)/tools
16 HOSTGENDIR  := $(HOSTDIR)/gen
18 # All files corresponding to a specific target go here.
19 TARGETDIR   := $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)
21 GENDIR      := $(TARGETDIR)/gen
23 -include $(GENDIR)/config/make.defaults
24 -include $(GENDIR)/config/make.opts
26 # target.cfg *must* come before host.cfg
27 include $(GENDIR)/config/target.cfg
28 include $(HOSTGENDIR)/config/host.cfg
30 # Cross tools installation directory.
31 CROSSTOOLSDIR        := @AROS_CROSSTOOLSDIR@
33 # Files downloaded from the net are put here
34 PORTSSOURCEDIR       := @AROS_PORTSSRCDIR@
35 PORTSDIR             := $(TARGETDIR)/Ports
37 # Distributable Files we generate are put here
38 DISTDIR              := @AROS_BUILDDIR_UNIX@/distfiles
40 # File for AROS gcc cross compiler spec file
41 SPECS                := $(GENDIR)/config/specs
43 # This is the directory structure for an AROS system.
44 AROSDIR              := $(TARGETDIR)/AROS
46 # Relative paths for standard directories
47 AROS_DIR_C           := C
48 AROS_DIR_CLASSES     := Classes
49 AROS_DIR_DATATYPES   := $(AROS_DIR_CLASSES)/Datatypes
50 AROS_DIR_GADGETS     := $(AROS_DIR_CLASSES)/Gadgets
51 AROS_DIR_DEVS        := Devs
52 AROS_DIR_FS          := L
53 AROS_DIR_LIBS        := Libs
54 AROS_DIR_LOCALE      := Locale
55 AROS_DIR_S           := S
56 AROS_DIR_DEVELOPMENT := Development
57 AROS_DIR_INCLUDE     := $(AROS_DIR_DEVELOPMENT)/include
58 AROS_DIR_LIB         := $(AROS_DIR_DEVELOPMENT)/lib
59 AROS_DIR_CONTRIB     := Extras
61 # Absolute paths for standard directories
62 AROS_C               := $(AROSDIR)/$(AROS_DIR_C)
63 AROS_CLASSES         := $(AROSDIR)/$(AROS_DIR_CLASSES)
64 AROS_DATATYPES       := $(AROSDIR)/$(AROS_DIR_DATATYPES)
65 AROS_GADGETS         := $(AROSDIR)/$(AROS_DIR_GADGETS)
66 AROS_DEVS            := $(AROSDIR)/$(AROS_DIR_DEVS)
67 AROS_FS              := $(AROSDIR)/$(AROS_DIR_FS)
68 AROS_RESOURCES       := $(AROS_DEVS)
69 AROS_DRIVERS         := $(AROS_DEVS)/Drivers
70 AROS_LIBS            := $(AROSDIR)/$(AROS_DIR_LIBS)
71 AROS_LOCALE          := $(AROSDIR)/$(AROS_DIR_LOCALE)
72 AROS_CATALOGS        := $(AROS_LOCALE)/Catalogs
73 AROS_HELP            := $(AROS_LOCALE)/Help
74 AROS_PREFS           := $(AROSDIR)/Prefs
75 AROS_ENVARC          := $(AROS_PREFS)/Env-Archive
76 AROS_PACKAGES        := $(AROS_ENVARC)/SYS/Packages
77 AROS_S               := $(AROSDIR)/$(AROS_DIR_S)
78 AROS_SYSTEM          := $(AROSDIR)/System
79 AROS_WANDERER        := $(AROS_SYSTEM)/Wanderer
80 AROS_THEMES          := $(AROS_SYSTEM)/Themes
81 AROS_IMAGES          := $(AROS_SYSTEM)/Images
82 AROS_TOOLS           := $(AROSDIR)/Tools
83 AROS_UTILITIES       := $(AROSDIR)/Utilities
84 AROS_TESTS           := $(AROSDIR)/Tests
86 AROS_DEVELOPMENT     := $(AROSDIR)/$(AROS_DIR_DEVELOPMENT)
87 AROS_INCLUDES        := $(AROSDIR)/$(AROS_DIR_INCLUDE)
88 AROS_LIB             := $(AROSDIR)/$(AROS_DIR_LIB)
90 AROS_CONTRIB         := $(AROSDIR)/$(AROS_DIR_CONTRIB)
92 # The generated files all go under the GENDIR path
93 SCRIPTDIR            := $(GENDIR)/scripts
95 MKDEPEND             := $(SRCDIR)/scripts/mkdep
96 FETCH                := $(SRCDIR)/scripts/fetch.sh
97    
98 # The paths to the generated tools
99 TOOLDIR         := $(HOSTDIR)/tools
100 TOOLLIB         := $(TOOLDIR)/libtool.a
101 MMAKE           := $(TOOLDIR)/mmake$(HOST_EXE_SUFFIX)
102 ARCHTOOL        := $(TOOLDIR)/archtool$(HOST_EXE_SUFFIX)
103 ELF2HUNK        := $(TOOLDIR)/elf2hunk$(HOST_EXE_SUFFIX)
104 GENMF           := $(TOOLDIR)/genmf.py
105 FLEXCAT         := $(TOOLDIR)/FlexCat$(HOST_EXE_SUFFIX)
106 FD2INLINE       := $(TOOLDIR)/fd2inline$(HOST_EXE_SUFFIX)
107 FD2PRAGMA       := $(TOOLDIR)/fd2pragma$(HOST_EXE_SUFFIX)
108 SFDC            := $(TOOLDIR)/sfdc
109 MODTOOL         := $(TOOLDIR)/modtool$(HOST_EXE_SUFFIX)
110 CREATEDTDESC    := $(TOOLDIR)/createdtdesc$(HOST_EXE_SUFFIX)
111 AFSLIB          := $(TOOLDIR)/libafs.a
112 COPYTOAFS       := $(TOOLDIR)/copytoafs$(HOST_EXE_SUFFIX)
113 ILBMTOC         := $(TOOLDIR)/ilbmtoc$(HOST_EXE_SUFFIX)
114 ILBMTOICON      := $(TOOLDIR)/ilbmtoicon$(HOST_EXE_SUFFIX)
115 INFOINFO        := $(TOOLDIR)/infoinfo$(HOST_EXE_SUFFIX)
116 GENSETS         := $(TOOLDIR)/gensets$(HOST_EXE_SUFFIX)
117 COLLECT-AROS    := $(TOOLDIR)/collect-aros$(HOST_EXE_SUFFIX)
118 GENMODULE       := $(TOOLDIR)/genmodule$(HOST_EXE_SUFFIX)
119 CXREF           := $(TOOLDIR)/cxref$(HOST_EXE_SUFFIX)
120 SETREV          := $(TOOLDIR)/setrev$(HOST_EXE_SUFFIX)
122 RESIDENT_BEGIN  := compiler/libinit/libentry
124 AROS_CC         := $(TARGET_CC)
125 AROS_AS         := $(TARGET_AS)
126 AROS_LD         := $(TARGET_LD)
128 STRIP           := $(TARGET_STRIP)
130 CALL            := env AROS_HOST_ARCH=$(AROS_HOST_ARCH) AROS_HOST_CPU=$(AROS_HOST_CPU) \
131                        AROS_TARGET_ARCH=$(AROS_TARGET_ARCH) AROS_TARGET_CPU=$(AROS_TARGET_CPU) \
132                        AROS_TARGET_VARIANT=$(AROS_TARGET_VARIANT) AROS_TARGET_SUFFIX=$(AROS_TARGET_SUFFIX)
134 # At the moment we have two copies of the includes...
135 # This is the AROS includes, minus clib/mlib.
136 GENINCDIR       := $(GENDIR)/include
138 # Basic make configuration. No need to edit anything else under here.
140 .SUFFIXES :
141 .SUFFIXES : .c .h .d .s .S
143 .PHONY : all clean setup subdirs
145 # Was debugging enabled? Better set up the options.
146 ifeq ($(DEBUG),yes)
147 CONFIG_CFLAGS += $(DEBUG_CFLAGS)
148 CONFIG_AFLAGS += $(DEBUG_AFLAGS)
149 CONFIG_LDFLAGS += $(DEBUG_LDFLAGS)
150 HOST_CFLAGS += $(DEBUG_CFLAGS)
151 HOST_AFLAGS += $(DEBUG_AFLAGS)
152 HOST_LDFLAGS += $(DEBUG_LDFLAGS)
153 MECHO   := $(ECHO)
154 else
155 MECHO   := $(NOP)
156 endif
158 # C and assembly flags are set depending upon the directory
159 CFLAGS      = $(USER_INCLUDES) $(CONFIG_CFLAGS) $(USER_CFLAGS)
160 AFLAGS      = $(USER_AFLAGS) $(CONFIG_AFLAGS)
161 LDFLAGS     = $(USER_LDFLAGS) $(CONFIG_LDFLAGS)
163 # Apple iOS stuff for gcc
164 IOS_LDFLAGS  := -F$(IOS_SDK_PATH)/System/Library/Frameworks
166 # Compatibility with old variables
169 OBJDIR          :=      $(GENDIR)/$(CURDIR)
170 BINDIR          :=      $(AROSDIR)
171 EXEDIR          :=      $(AROSDIR)/C
172 LIBDIR          :=      $(AROS_LIB)
173 CONTRIBDIR      :=      $(AROS_CONTRIB)
174 OSGENDIR        :=      $(GENDIR)/rom
175 KOBJSDIR        :=      $(GENDIR)/kobjs
176 PKGDIR          :=      $(GENDIR)/pkg
178 # the build system needs to have some tools in the PATH
180 ifeq ($(AROS_PATH_SET),)
181     TMP_TOOLDIR       := $(shell echo $(TOOLDIR) | sed 's/^\(.\):\//\/\1\//')
182     TMP_CROSSTOOLSDIR := $(shell echo $(CROSSTOOLSDIR) | sed 's/^\(.\):\//\/\1\//')
183     PATH := $(TMP_CROSSTOOLSDIR):$(TMP_TOOLDIR):$(TMP_TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX):$(PATH)
184     AROS_PATH_SET := yes
185     export PATH AROS_PATH_SET
186 endif
188 # Here follow some global variables that can get values through the makefile
189 # and will be handled in make.tail
191 # Dirs to create a makedir rule for
192 GLOB_MKDIRS :=
194 # Source directory is added to the target search path
195 VPATH := $(shell echo $(SRCDIR)/$(CURDIR) | sed 's/^\(.\):\//\/\1\//')
197 # Macro for expanding wildcards in source directory
198 # We use shell script here in order to avoid Unicode file names that are listed by pattern expansion but can't be accessed
199 # because of failing Unicode->ACP conversion under Windows
200 WILDCARD = $(shell cd $(SRCDIR)/$(CURDIR); for file in $(1); do if [ -f $$file ]; then printf "%s" "$$file "; fi; done)