Add buildsys
FossilOrigin-Name: 561f525c5562e52d9782f6b4a39c390a2c4ee0552c0ec52cbf5c98f31f9a2957
This commit is contained in:
parent
84a1e60fdb
commit
fafad6f92d
13 changed files with 5376 additions and 0 deletions
20
src/Makefile
Normal file
20
src/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
include ../extra.mk
|
||||
|
||||
SUBDIRS = exceptions
|
||||
|
||||
SHARED_LIB = ${OBJMATRIX_SHARED_LIB}
|
||||
STATIC_LIB = ${OBJMATRIX_STATIC_LIB}
|
||||
FRAMEWORK = ${OBJMATRIX_FRAMEWORK}
|
||||
LIB_MAJOR = ${OBJMATRIX_LIB_MAJOR}
|
||||
LIB_MINOR = ${OBJMATRIX_LIB_MINOR}
|
||||
|
||||
INCLUDES := ${SRCS:.m=.h} \
|
||||
ObjMatrix.h
|
||||
|
||||
OBJS_EXTRA = ${EXCEPTIONS_EXCEPTIONS_A}
|
||||
LIB_OBJS_EXTRA = ${EXCEPTIONS_EXCEPTIONS_LIB_A}
|
||||
|
||||
include ../buildsys.mk
|
||||
|
||||
CPPFLAGS += -I. -Iexceptions
|
||||
LD = ${OBJC}
|
11
src/exceptions/Makefile
Normal file
11
src/exceptions/Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
include ../../extra.mk
|
||||
|
||||
STATIC_PIC_LIB_NOINST = ${EXCEPTIONS_LIB_A}
|
||||
STATIC_LIB_NOINST = ${EXCEPTIONS_A}
|
||||
|
||||
INCLUDES = ${SRCS:.m=.h}
|
||||
|
||||
include ../../buildsys.mk
|
||||
|
||||
CPPFLAGS += -I. -I..
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue