annotate src/rovascope/libcalc/Makefile @ 894:f19e6748d8eb
trunk
[svn] maintenance of build system:
- link for OBJECTIVE_LIBS had not occurred even if OBJECTIVE_LIBS_NOINST was re-linked. LIBDEP macro is introduced to indicate dependency.
- make rules such as $(AR) cq $@ $(OBJECTS) in individual Makefile have been removed. these linkage will be done through objective.mk.
- *.h has been removed from SOURCES. these files had been passed to linker as object files.
author |
yaz |
date |
Sat, 24 Mar 2007 09:08:58 -0700 |
parents |
290588854a9d |
children |
|
rev |
line source |
282
|
1 include ../../../mk/rules.mk
|
|
2 include ../../../mk/init.mk
|
|
3
|
|
4 OBJECTIVE_LIBS_NOINST = libcalc.a
|
|
5
|
|
6 LIBDIR = $(plugindir)/$(VISUALIZATION_PLUGIN_DIR)
|
|
7
|
|
8 LIBADD = $(GTK_LIBS) $(XML_LIBS) $(SDL_LIBS)
|
|
9
|
|
10 SOURCES = dict.c execute.c function.c parser.c storage.c
|
|
11
|
|
12 OBJECTS = ${SOURCES:.c=.o}
|
|
13
|
|
14 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(ARCH_DEFINES) $(XML_CPPFLAGS) $(SDL_CFLAGS) -I../../intl -I../..
|
|
15
|
|
16 include ../../../mk/objective.mk
|
|
17
|