Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10063
Modified Files: Makefile Log Message: seperated SOURCES into HELPERSOURCES (non-objects) and OJBECTSOURCES (real objects), in order to not build (e.g.) "z_zexy.pd_linux" when splitting the library into externals
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile 6 Jun 2006 11:52:20 -0000 1.10 --- Makefile 6 Jun 2006 12:05:33 -0000 1.11 *************** *** 5,9 **** install install-bin install-doc install-abs
! SOURCES=$(sort $(filter %.c, $(wildcard *.c)) z_zexy.c)
zexyconf.h: zexyconf.h.in configure --- 5,13 ---- install install-bin install-doc install-abs
! HELPERSOURCES=z_zexy.c zexy.c winNT_portio.c ! ! OBJECTSOURCES=$(sort $(filter-out $(HELPERSOURCES), $(filter %.c, $(wildcard *.c)))) ! ! SOURCES=$(OBJECTSOURCES) $(HELPERSOURCES)
zexyconf.h: zexyconf.h.in configure *************** *** 45,49 **** TARGETS = $(SOURCES:.c=.o)
! OBJECTS = $(SOURCES:.c=)
## if $(BUILDLIBRARY) is defined, we build everything as a single library --- 49,53 ---- TARGETS = $(SOURCES:.c=.o)
! OBJECTS = $(OBJECTSOURCES:.c=)
## if $(BUILDLIBRARY) is defined, we build everything as a single library *************** *** 53,57 **** cp $(LIBNAME).$(EXT) .. else ! all: externals endif
--- 57,61 ---- cp $(LIBNAME).$(EXT) .. else ! all: $(OBJECTS) endif