Mercurial > audlegacy-plugins
annotate src/amidi-plug/backend-alsa/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 | 4f0b50f2e5d6 |
children | e2904348f154 |
rev | line source |
---|---|
20 | 1 include ../../../mk/rules.mk |
2 include ../../../mk/init.mk | |
3 | |
4 noinst_HEADERS = b-alsa.h b-alsa-config.h backend-alsa-icon.xpm | |
5 | |
27 | 6 CFLAGS += $(PICFLAGS) $(GLIB_CFLAGS) $(ALSA_CFLAGS) -I../../.. |
20 | 7 |
8 libdir = $(AMIDIPLUGBACKENDDIR) | |
9 | |
10 OBJECTIVE_LIBS = ap-alsa$(SHARED_SUFFIX) | |
11 | |
12 LIBADD = $(GLIB_LIBS) $(ALSA_LIBS) ../pcfg/libpcfg.a | |
13 SOURCES = b-alsa.c | |
14 | |
15 OBJECTS = ${SOURCES:.c=.o} | |
16 | |
894 | 17 LIBDEP = ../pcfg/libpcfg.a |
18 | |
20 | 19 include ../../../mk/objective.mk |