Mercurial > audlegacy-plugins
annotate src/curl/Makefile @ 1574:e566e18e9e3d
Huge cleanup and some bugfixes. Temporarily breaks / removes sub-tune
changing.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Mon, 03 Sep 2007 06:28:17 +0300 |
parents | 0618841906ca |
children | e0c5fa530df8 |
rev | line source |
---|---|
429 | 1 include ../../mk/rules.mk |
2 include ../../mk/init.mk | |
3 | |
4 SUBDIRS = | |
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 | 7 |
1173
5896bd827cbc
[svn] - move transport plugins into Transport subdirectory.
yaz
parents:
942
diff
changeset
|
8 LIBDIR = $(plugindir)/$(TRANSPORT_PLUGIN_DIR) |
429 | 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 | 11 |
12 SOURCES = curl.c | |
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 | 15 |
942 | 16 #CFLAGS += -Wpointer-arith -Wimplicit -Wnested-externs -Wcast-align \ |
17 #-Wcast-qual -Wstrict-prototypes -Wmissing-prototypes \ | |
18 #-Wmissing-declarations -W -Wno-unused -Wshadow -Wmissing-noreturn \ | |
19 #-Wundef -Wpacked -Wnested-externs -Wbad-function-cast -Wredundant-decls \ | |
20 #-Wfloat-equal -Wdisabled-optimization -pedantic -std=c99 | |
936 | 21 |
429 | 22 OBJECTS = ${SOURCES:.c=.o} |
23 | |
24 include ../../mk/objective.mk |