annotate src/curl/Makefile @ 1573:82548d92c922

Some macro additions for handling Gtk+/Glib stuff; Misc merges.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 03 Sep 2007 06:25:55 +0300
parents 0618841906ca
children e0c5fa530df8
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
1262
0618841906ca The problem of not loading curl on Mach-based systems has been solved. MacOS's dyld gets confused when plugins refer to other code of the same name. Rename plugin binaries accordingly.
William Pitcock <nenolod@atheme-project.org>
parents: 1173
diff changeset
6 OBJECTIVE_LIBS = libcurlsrc$(SHARED_SUFFIX)
429
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
7
1173
5896bd827cbc [svn] - move transport plugins into Transport subdirectory.
yaz
parents: 942
diff changeset
8 LIBDIR = $(plugindir)/$(TRANSPORT_PLUGIN_DIR)
429
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
940
356d2335a975 [svn] - fix curl.c:913: warning: implicit declaration of function 'strdup'
nenolod
parents: 936
diff changeset
14 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(BEEP_DEFINES) $(CURL_CFLAGS) -I../../intl -I../..
429
74b23aec578d [svn] - buildsystem glue for curl http:// transport
nenolod
parents:
diff changeset
15
942
e5f24a83d909 [svn] - comment out debug cflags
nenolod
parents: 940
diff changeset
16 #CFLAGS += -Wpointer-arith -Wimplicit -Wnested-externs -Wcast-align \
e5f24a83d909 [svn] - comment out debug cflags
nenolod
parents: 940
diff changeset
17 #-Wcast-qual -Wstrict-prototypes -Wmissing-prototypes \
e5f24a83d909 [svn] - comment out debug cflags
nenolod
parents: 940
diff changeset
18 #-Wmissing-declarations -W -Wno-unused -Wshadow -Wmissing-noreturn \
e5f24a83d909 [svn] - comment out debug cflags
nenolod
parents: 940
diff changeset
19 #-Wundef -Wpacked -Wnested-externs -Wbad-function-cast -Wredundant-decls \
e5f24a83d909 [svn] - comment out debug cflags
nenolod
parents: 940
diff changeset
20 #-Wfloat-equal -Wdisabled-optimization -pedantic -std=c99
936
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