annotate src/modplug/gui/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 550c9e382cf8
children 499656950801
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
1 include ../../../mk/rules.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
2 include ../../../mk/init.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
3
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: 43
diff changeset
4 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../..
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: 43
diff changeset
5 CXXFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../..
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
6
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
7 OBJECTIVE_LIBS_NOINST = libgui.a
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
8 SOURCES = main.cxx support.cxx interface.cxx callbacks.cxx
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
9
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
10 OBJECTS = ${SOURCES:.cxx=.o}
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
11
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
12 include ../../../mk/objective.mk