ObjFW  Check-in [fd3625cbba]

Overview
Comment:objfw-compile: Pass -f flags to the compiler.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.5
Files: files | file ages | folders
SHA3-256: fd3625cbba008abcd8bdabf006b235e9dc4135ef7370d91cb5939c56f2c4bc9f
User & Date: js on 2011-06-29 21:16:03
Other Links: branch diff | manifest | tags
Context
2011-06-30
18:27
Add -[isEqual:] to OFXMLElement and OFXMLAttribute. check-in: 05c094a39f user: js tags: 0.5
2011-06-29
21:16
objfw-compile: Pass -f flags to the compiler. check-in: fd3625cbba user: js tags: 0.5
19:17
Check for libobjc / libobjfw-rt and abort if not found. check-in: 342edd9a4d user: js tags: 0.5
Changes

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

103
104
105
106
107
108
109



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



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







>
>
>







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"
			;;