ObjFW  Check-in [3cfb6d105e]

Overview
Comment:Allow -framework in objfw-compile.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3cfb6d105e5281690f8dafd8827d691b29f1d421f5ec8e7c90ba7e18db09ff20
User & Date: js on 2011-01-04 22:58:13
Other Links: manifest | tags
Context
2011-01-08
15:57
Ignore SIGPIPE when using OFStream. check-in: 1404d33024 user: js tags: trunk
2011-01-04
22:58
Allow -framework in objfw-compile. check-in: 3cfb6d105e user: js tags: trunk
2011-01-03
22:12
Update ChangeLog in default branch. check-in: a6eae2fd6e user: js tags: trunk
Changes

Modified utils/objfw-compile from [d0a384a73a] to [0f18b21798].

101
102
103
104
105
106
107




108
109
110
111
112
113
114
		-D)
			shift
			CPPFLAGS="$CPPFLAGS -D$1"
			;;
		-D*)
			CPPFLAGS="$CPPFLAGS $1"
			;;




		-g*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-I)
			shift
			CPPFLAGS="$CPPFLAGS -I$1"
			;;







>
>
>
>







101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
		-D)
			shift
			CPPFLAGS="$CPPFLAGS -D$1"
			;;
		-D*)
			CPPFLAGS="$CPPFLAGS $1"
			;;
		-framework)
			shift
			LIBS="$LIBS -framework $1"
			;;
		-g*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-I)
			shift
			CPPFLAGS="$CPPFLAGS -I$1"
			;;