ObjFW  Check-in [323923eb73]

Overview
Comment:Allow warning flags to be specified with objfw-compile.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 323923eb7357ac376233b69d3e39b61f056188b123d41d6271f60cb88a67b1e8
User & Date: js on 2010-11-20 22:53:20
Other Links: manifest | tags
Context
2010-11-20
22:57
Allow debugging & optimization flags to be specified with objfw-compile. check-in: 4708bb6887 user: js tags: trunk
22:53
Allow warning flags to be specified with objfw-compile. check-in: 323923eb73 user: js tags: trunk
22:49
New, better syntax for objfw-compile. check-in: 307c430b25 user: js tags: trunk
Changes

Modified utils/objfw-compile from [8637157cf3] to [87a8c24a63].

108
109
110
111
112
113
114



115
116
117
118
119
120
121
		-L)
			shift
			LIBS="$LIBS -L$1"
			;;
		-L*)
			LIBS="$LIBS $1"
			;;



		-*)
			echo "Unknown option: $1"
			exit 1
			;;
		*.m)
			flags_done="yes"
			obj="${1%.m}.o"







>
>
>







108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
		-L)
			shift
			LIBS="$LIBS -L$1"
			;;
		-L*)
			LIBS="$LIBS $1"
			;;
		-W*)
			OBJCFLAGS="$OBJCFLAGS $1"
			;;
		-*)
			echo "Unknown option: $1"
			exit 1
			;;
		*.m)
			flags_done="yes"
			obj="${1%.m}.o"