annotate Plugins/Input/tonegen/Makefile.in @ 640:f26682a2825b
trunk
[svn] Addresses most of the warnings in the code, and uses a -W CFLAG to disable the non-null checks. From external contributor Harald van Dijk (Gentoo).
author |
chainsaw |
date |
Sat, 18 Feb 2006 16:15:16 -0800 |
parents |
694f4b3bfea4 |
children |
8020239ba1cb |
rev |
line source |
572
|
1 include ../../../mk/rules.mk
|
|
2 include ../../../mk/objective.mk
|
61
|
3
|
572
|
4 OBJECTIVE_LIBS = libtonegen.so
|
|
5
|
|
6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)
|
61
|
7
|
572
|
8 SOURCES = tonegen.c
|
|
9
|
|
10 OBJECTS = ${SOURCES:.c=.o}
|
61
|
11
|
572
|
12 CFLAGS += -fPIC -DPIC @GTK_CFLAGS@ -I../../../intl -I../../..
|
61
|
13
|
572
|
14 libtonegen.so: $(OBJECTS)
|
|
15 $(CC) $(CFLAGS) -shared -o $@ $(OBJECTS)
|