annotate src/curl/Makefile @ 936:c9fe8b112bb2 trunk

[svn] - fix a ton of warnings
author nenolod
date Thu, 12 Apr 2007 10:58:04 -0700
parents d49227a584b0
children 356d2335a975
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
429
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
1 include ../../mk/rules.mk
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
2 include ../../mk/init.mk
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
3
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
4 SUBDIRS =
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
5
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
6 OBJECTIVE_LIBS = libcurl$(SHARED_SUFFIX)
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
7
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
8 LIBDIR = $(plugindir)/$(GENERAL_PLUGIN_DIR)
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
9
578
550c9e382cf8 [svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents: 429
diff changeset
10 LIBADD += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(CURL_LIBS)
429
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
11
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
12 SOURCES = curl.c
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
13
934
d49227a584b0 [svn] - fix warnings with -Wunsigned -Wextra
nenolod
parents: 578
diff changeset
14 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(BEEP_DEFINES) $(CURL_CFLAGS) -I../../intl -I../.. -Wextra -Wuninitialized
429
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
15
936
c9fe8b112bb2 [svn] - fix a ton of warnings
nenolod
parents: 934
diff changeset
16 CFLAGS += -Wpointer-arith -Wimplicit -Wnested-externs -Wcast-align \
c9fe8b112bb2 [svn] - fix a ton of warnings
nenolod
parents: 934
diff changeset
17 -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes \
c9fe8b112bb2 [svn] - fix a ton of warnings
nenolod
parents: 934
diff changeset
18 -Wmissing-declarations -W -Wno-unused -Wshadow -Wmissing-noreturn \
c9fe8b112bb2 [svn] - fix a ton of warnings
nenolod
parents: 934
diff changeset
19 -Wundef -Wpacked -Wnested-externs -Wbad-function-cast -Wredundant-decls \
c9fe8b112bb2 [svn] - fix a ton of warnings
nenolod
parents: 934
diff changeset
20 -Wfloat-equal -Wformat=2 -Wdisabled-optimization -pedantic
c9fe8b112bb2 [svn] - fix a ton of warnings
nenolod
parents: 934
diff changeset
21
429
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
22 OBJECTS = ${SOURCES:.c=.o}
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
23
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
24 include ../../mk/objective.mk