Mercurial > audlegacy-plugins
annotate src/flac/plugin_common/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 | 5f53309bb7d8 |
| children |
| rev | line source |
|---|---|
| 22 | 1 include ../../../mk/rules.mk |
| 2 include ../../../mk/init.mk | |
| 3 | |
| 779 | 4 CFLAGS += $(PICFLAGS) -I.. -I../../.. -I../libflac |
| 22 | 5 |
| 6 OBJECTIVE_LIBS_NOINST = libplugin_common.a | |
| 7 | |
| 8 noinst_HEADERS = \ | |
| 9 all.h \ | |
| 10 charset.h \ | |
| 11 defs.h \ | |
| 12 dither.h \ | |
| 13 locale_hack.h \ | |
| 97 | 14 tags.h \ |
| 15 replaygain.h | |
| 22 | 16 |
| 17 SOURCES = \ | |
| 18 charset.c \ | |
| 19 dither.c \ | |
| 97 | 20 tags.c \ |
| 21 replaygain.c | |
| 22 | 22 |
| 23 OBJECTS = ${SOURCES:.c=.o} | |
| 24 | |
| 25 include ../../../mk/objective.mk |
