ObjFW  Check-in [4450b2d98a]

Overview
Comment:objfw-compile: Pass -f flags to the compiler.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4450b2d98aa6da4e7818128db8f11b7241cfc6b87e80e8d7127e06cdfce939a1
User & Date: js on 2011-06-29 21:16:03
Other Links: manifest | tags
Context
2011-06-30
12:36
Nicer initializers for OF{Double,Float}{Matrix,Vector}. check-in: e129012224 user: js tags: trunk
2011-06-29
21:16
objfw-compile: Pass -f flags to the compiler. check-in: 4450b2d98a user: js tags: trunk
19:17
Check for libobjc / libobjfw-rt and abort if not found. check-in: f19d3dcf08 user: js tags: trunk
Changes

Modified utils/objfw-compile from [737a77c336] to [7b180ee5b0].

103
104
105
106
107
108
109



110
111
112
113
114
115
116
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119







+
+
+







		-D)
			shift
			CPPFLAGS="$CPPFLAGS -D$1"
			;;
		-D*)
			CPPFLAGS="$CPPFLAGS $1"
			;;
		-f*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-framework)
			shift
			LIBS="$LIBS -framework $1"
			;;
		-g*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;