ObjFW  Check-in [0278f0b43b]

Overview
Comment:Minor build system clean-ups
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0278f0b43b8f1ca6788afce31adeb705851858360d649112bc7bc451c22f47ac
User & Date: js on 2014-07-19 09:35:19
Other Links: manifest | tags
Context
2014-07-19
09:55
Don't use C11's noreturn check-in: 716b1fc2b3 user: js tags: trunk
09:35
Minor build system clean-ups check-in: 0278f0b43b user: js tags: trunk
2014-07-18
19:38
OFFile: Small documentation improvement check-in: d20e7cbea0 user: js tags: trunk
Changes

Modified autogen.sh from [3936c3cbbf] to [07e64ecb56].

1

2
3
4
#!/bin/sh

aclocal -I m4 || exit 1
autoconf || exit 1
autoheader || exit 1

>
|
|
|
1
2
3
4
5
#!/bin/sh
set -e
aclocal -I m4
autoconf
autoheader

Modified src/exceptions/Makefile from [1eae683fe5] to [8a8b97a0c0].

62
63
64
65
66
67
68
69
	       OFThreadStillRunningException.m

INCLUDES = ${SRCS:.m=.h}

include ../../buildsys.mk

CPPFLAGS += -I. -I.. -I../.. -I../runtime
LD = ${OBJC}







<
62
63
64
65
66
67
68

	       OFThreadStillRunningException.m

INCLUDES = ${SRCS:.m=.h}

include ../../buildsys.mk

CPPFLAGS += -I. -I.. -I../.. -I../runtime

Modified src/runtime/Makefile from [19c7e25279] to [f63ebab534].

25
26
27
28
29
30
31
32

OBJS_EXTRA = ${LOOKUP_ASM_LOOKUP_ASM_A}
LIB_OBJS_EXTRA = ${LOOKUP_ASM_LOOKUP_ASM_LIB_A}

include ../../buildsys.mk

CPPFLAGS += -I. -I.. -I../..
LD = ${OBJC}







<
25
26
27
28
29
30
31


OBJS_EXTRA = ${LOOKUP_ASM_LOOKUP_ASM_A}
LIB_OBJS_EXTRA = ${LOOKUP_ASM_LOOKUP_ASM_LIB_A}

include ../../buildsys.mk

CPPFLAGS += -I. -I.. -I../..