Differences From Artifact [89f588f854]:
- File src/Makefile — part of check-in [1aedad1588] at 2021-05-01 03:21:07 on branch trunk — Move OFAtomic.h variants to src/platform (user: js, size: 6234) [annotate] [blame] [check-ins using] [more...]
To Artifact [364ab65b22]:
- File
src/Makefile
— part of check-in
[3c88df0ce4]
at
2021-05-09 14:45:19
on branch amiga-library
— Merge trunk into branch "amiga-library"
All necessary changes to adjust for the changes made in trunk are
included in the merge commit. (user: js, size: 6973) [annotate] [blame] [check-ins using] [more...]
1 2 3 |
include ../extra.mk
SUBDIRS = ${RUNTIME} exceptions encodings forwarding
| | > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
include ../extra.mk
SUBDIRS = ${RUNTIME} exceptions encodings forwarding
SUBDIRS_AFTER = ${LINKLIB} ${BRIDGE}
CLEAN = amiga-end.amigalib.dep \
amiga-end.amigalib.o \
amiga-glue.amigalib.dep \
amiga-glue.amigalib.o \
amiga-library-functable.inc \
amiga-library.amigalib.dep \
amiga-library.amigalib.o \
inline.h
DISTCLEAN = Info.plist objfw-defs.h
SHARED_LIB = ${OBJFW_SHARED_LIB}
STATIC_LIB = ${OBJFW_STATIC_LIB}
FRAMEWORK = ${OBJFW_FRAMEWORK}
AMIGA_LIB = ${OBJFW_AMIGA_LIB}
LIB_MAJOR = ${OBJFW_LIB_MAJOR}
LIB_MINOR = ${OBJFW_LIB_MINOR}
SRCS = OFASPrintF.m \
OFApplication.m \
OFArray.m \
OFBase64.m \
|
| ︙ | ︙ | |||
215 216 217 218 219 220 221 222 223 224 | OBJS_EXTRA = exceptions/exceptions.a \ encodings/encodings.a \ forwarding/forwarding.a LIB_OBJS_EXTRA = exceptions/exceptions.lib.a \ encodings/encodings.lib.a \ forwarding/forwarding.lib.a include ../buildsys.mk | > > > > > > | > > > > | > | 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
OBJS_EXTRA = exceptions/exceptions.a \
encodings/encodings.a \
forwarding/forwarding.a
LIB_OBJS_EXTRA = exceptions/exceptions.lib.a \
encodings/encodings.lib.a \
forwarding/forwarding.lib.a
AMIGA_LIB_OBJS_START = amiga-library.amigalib.o
AMIGA_LIB_OBJS_EXTRA = amiga-glue.amigalib.o \
exceptions/exceptions.amigalib.a \
encodings/encodings.amigalib.a \
forwarding/forwarding.amigalib.a \
amiga-end.amigalib.o
include ../buildsys.mk
CPPFLAGS += -I. -I.. -Iexceptions -Iruntime \
-DOBJFW_AMIGA_LIB=\"${OBJFW_AMIGA_LIB}\" \
-DOBJFW_LIB_MAJOR=${OBJFW_LIB_MAJOR} \
-DOBJFW_LIB_MINOR=${OBJFW_LIB_MINOR}
AMIGA_LIB_CFLAGS += -DOF_COMPILING_AMIGA_LIBRARY
LD = ${OBJC}
FRAMEWORK_LIBS := -Fruntime \
${RUNTIME_FRAMEWORK_LIBS} \
${REEXPORT_RUNTIME_FRAMEWORK} \
${LIBS}
LIBS := -Lruntime -Lruntime/linklib ${RUNTIME_LIBS} ${REEXPORT_RUNTIME} ${LIBS}
AMIGA_LIB_LIBS = ${LIBS}
|