From 7223aa2d0a3135460c073f70f00821ce4dbe8342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 6 Oct 2009 18:06:46 +0000 Subject: adapted to new common Makefile svn path=/trunk/externals/hardware/wiimote/; revision=12548 --- Makefile | 144 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ makefile | 64 -------------------------- makefile.org | 64 ++++++++++++++++++++++++++ 3 files changed, 208 insertions(+), 64 deletions(-) create mode 100644 Makefile delete mode 100644 makefile create mode 100644 makefile.org diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2b04372 --- /dev/null +++ b/Makefile @@ -0,0 +1,144 @@ +# To use this Makefile for your project, first put the name of your library in +# LIBRARY_NAME variable. The folder for your project should have the same name +# as your library. +LIBRARY_NAME = wiimote + +# Next, add your source files to the SOURCES variable. +SOURCES = wiimote.c + +# For objects that only build on certain platforms, add those to the SOURCES +# line for the right platforms. +SOURCES_Darwin = +SOURCES_Linux = +SOURCES_Windows = + +#------------------------------------------------------------------------------# +# +# you shouldn't need to edit anything below here, if we did it right :) +# +#------------------------------------------------------------------------------# + +# where Pd lives +PD_PATH = ../../pd +# where to install the library +objectsdir = $(PD_PATH)/extra + +CFLAGS = -DPD -I$(PD_PATH)/src -Wall -W -g +LDFLAGS = +LIBS = -lcwiid -lbluetooth -lpthread + +UNAME := $(shell uname -s) +ifeq ($(UNAME),Darwin) + SOURCES += $(SOURCES_Darwin) + EXTENSION = pd_darwin + OS = macosx + OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -fast + FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=10.4 + CFLAGS += -fPIC $(FAT_FLAGS) + LDFLAGS += -bundle -undefined dynamic_lookup $(FAT_FLAGS) + LIBS += -lc + STRIP = strip -x + endif +ifeq ($(UNAME),Linux) + SOURCES += $(SOURCES_Linux) + EXTENSION = pd_linux + OS = linux + OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer + CFLAGS += -fPIC + LDFLAGS += -Wl,--export-dynamic -shared -fPIC + LIBS += -lc + STRIP = strip --strip-unneeded -R .note -R .comment +endif +ifeq (MINGW,$(findstring MINGW,$(UNAME))) + SOURCES += $(SOURCES_Windows) + EXTENSION = dll + OS = windows + OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer -march=i686 -mtune=pentium4 + WINDOWS_HACKS = -D'O_NONBLOCK=1' + CFLAGS += -mms-bitfields $(WINDOWS_HACKS) + LDFLAGS += -s -shared -Wl,--enable-auto-import + LIBS += -L$(PD_PATH)/bin -L$(PD_PATH)/obj -lpd -lwsock32 -lkernel32 -luser32 -lgdi32 + STRIP = strip --strip-unneeded -R .note -R .comment +endif + +CFLAGS += $(OPT_CFLAGS) + +-include Make.local + + +.PHONY = install libdir_install single_install install-doc install-exec clean dist etags + +all: $(SOURCES:.c=.$(EXTENSION)) + +%.o: %.c + $(CC) $(CFLAGS) -o "$*.o" -c "$*.c" + +%.$(EXTENSION): %.o + $(CC) $(LDFLAGS) -o "$*.$(EXTENSION)" "$*.o" $(LIBS) + chmod a-x "$*.$(EXTENSION)" + rm -f -- $*.o + +# this links everything into a single binary file +$(LIBRARY_NAME): $(SOURCES:.c=.o) $(LIBRARY_NAME).o + $(CC) $(LDFLAGS) -o $(LIBRARY_NAME).$(EXTENSION) $(SOURCES:.c=.o) $(LIBRARY_NAME).o $(LIBS) + chmod a-x $(LIBRARY_NAME).$(EXTENSION) + + +install: libdir_install + +# The meta and help files are explicitly installed to make sure they are +# actually there. Those files are not optional, then need to be there. +libdir_install: $(SOURCES:.c=.$(EXTENSION)) install-doc install-exec + install -d $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(LIBRARY_NAME)-meta.pd $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(SOURCES:.c=.$(EXTENSION)) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + $(STRIP) $(addprefix $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/,$(SOURCES:.c=.$(EXTENSION))) + +# install library linked as single binary +single_install: $(LIBRARY_NAME) install-doc install-exec + install -d $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(LIBRARY_NAME).$(EXTENSION) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + $(STRIP) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/$(LIBRARY_NAME).$(EXTENSION) + +install-doc: + install -d $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) +# install -m644 -p $(SOURCES:.c=-help.pd) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(wildcard *.pd) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + install -m644 -p README $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/README.txt + install -m644 -p VERSION $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/VERSION.txt + install -m644 -p CHANGES $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/CHANGES.txt + +install-exec: + install -d $(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(wildcard *.pd) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) + + +clean: + -rm -f -- $(SOURCES:.c=.o) + -rm -f -- $(SOURCES:.c=.$(EXTENSION)) + -rm -f -- $(LIBRARY_NAME).$(EXTENSION) + +distclean: clean + -rm -f -- ../$(LIBRARY_NAME)-$(OS)-$(shell uname -m).tar.bz2 + -rm -f -- ../$(LIBRARY_NAME)-$(OS).tar.bz2 + +dist: all dist_$(OS) + +dist_linux: + cd .. && tar --exclude=.svn -cjpf $(LIBRARY_NAME)-$(OS)-$(shell uname -m).tar.bz2 $(LIBRARY_NAME) + +dist_macosx: + cd .. && tar --exclude=.svn -cjpf $(LIBRARY_NAME)-$(OS).tar.bz2 $(LIBRARY_NAME) + +dist_windows: + cd .. && tar --exclude=.svn -cjpf $(LIBRARY_NAME)-$(OS).tar.bz2 $(LIBRARY_NAME) + + +etags: + etags *.[ch] ../../pd/src/*.[ch] /usr/include/*.h /usr/include/*/*.h + +showpaths: + @echo "PD_PATH: $(PD_PATH)" + @echo "objectsdir: $(objectsdir)" + @echo "LIBRARY_NAME: $(LIBRARY_NAME)" + @echo "SOURCES: $(SOURCES)" diff --git a/makefile b/makefile deleted file mode 100644 index b9cda41..0000000 --- a/makefile +++ /dev/null @@ -1,64 +0,0 @@ -NAME=wiimote - -# If you want to use a customized Pd, then define a $PD_PATH variable. -# Otherwise, the Pd must be installed on the system -PD_PATH=../../../pd - -# specify the path to CWiid: -#CWIID_PATH = $(ASCAPE_PATH)/usr/lib -LIBCWIID_PATH = "cwiid-svn/libcwiid" - -###################################################### -# You shouldn't need to change anything beyond here! # -###################################################### - - -ifdef PD_PATH -PD_INCLUDE := -I$(PD_PATH)/src -PD_EXTRA_PATH := ../../../../lib/libs -PD_DOC_PATH := ../../../../lib/pd-help -else -PD_INCLUDE := -I../../../pd/src -PD_EXTRA_PATH := /usr/local/lib/pd/extra -PD_DOC_PATH := /usr/local/lib/pd/doc -endif - - -#LIBS = $(LIBCWIID_PATH)/libcwiid.a -lbluetooth -lpthread -LIBS = -lcwiid -lbluetooth -lpthread - -current: pd_linux - -##### LINUX: - -pd_linux: $(NAME).pd_linux - -.SUFFIXES: .pd_linux - -LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ - -W -Wshadow -Wstrict-prototypes \ - -Wno-unused -Wno-parentheses -Wno-switch - -.c.pd_linux: - $(CC) $(LINUXCFLAGS) $(PD_INCLUDE) -o $*.o -c $*.c - $(LD) --export-dynamic -shared -o $*.pd_linux $*.o $(LIBS) -lc -lm - strip --strip-unneeded $*.pd_linux - rm -f $*.o - -install: - -ifdef ASCAPE_INSTALLED - -cp *help*.pd $(ASCAPE_PATH)/ss_engine/pd/help/. -ifeq ($(findstring Linux,$(ASCAPE_OS)),Linux) - -cp *.pd_linux $(ASCAPE_PATH)/ss_engine/pd/externs/$(ASCAPE_OS)$(ASCAPE_ARCH)/. -endif -ifeq ($(findstring Darwin,$(SS_OS)),Darwin) - -cp *.pd_darwin $(ASCAPE_PATH)/ss_engine/pd/externs/$(ASCAPE_OS)$(ASCAPE_ARCH)/. -endif -endif - - -cp *.pd_linux $(PD_EXTRA_PATH)/. - -cp *help*.pd $(PD_DOC_PATH)/. - -clean: - -rm -f *.o *.pd_* so_locations diff --git a/makefile.org b/makefile.org new file mode 100644 index 0000000..b9cda41 --- /dev/null +++ b/makefile.org @@ -0,0 +1,64 @@ +NAME=wiimote + +# If you want to use a customized Pd, then define a $PD_PATH variable. +# Otherwise, the Pd must be installed on the system +PD_PATH=../../../pd + +# specify the path to CWiid: +#CWIID_PATH = $(ASCAPE_PATH)/usr/lib +LIBCWIID_PATH = "cwiid-svn/libcwiid" + +###################################################### +# You shouldn't need to change anything beyond here! # +###################################################### + + +ifdef PD_PATH +PD_INCLUDE := -I$(PD_PATH)/src +PD_EXTRA_PATH := ../../../../lib/libs +PD_DOC_PATH := ../../../../lib/pd-help +else +PD_INCLUDE := -I../../../pd/src +PD_EXTRA_PATH := /usr/local/lib/pd/extra +PD_DOC_PATH := /usr/local/lib/pd/doc +endif + + +#LIBS = $(LIBCWIID_PATH)/libcwiid.a -lbluetooth -lpthread +LIBS = -lcwiid -lbluetooth -lpthread + +current: pd_linux + +##### LINUX: + +pd_linux: $(NAME).pd_linux + +.SUFFIXES: .pd_linux + +LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ + -W -Wshadow -Wstrict-prototypes \ + -Wno-unused -Wno-parentheses -Wno-switch + +.c.pd_linux: + $(CC) $(LINUXCFLAGS) $(PD_INCLUDE) -o $*.o -c $*.c + $(LD) --export-dynamic -shared -o $*.pd_linux $*.o $(LIBS) -lc -lm + strip --strip-unneeded $*.pd_linux + rm -f $*.o + +install: + +ifdef ASCAPE_INSTALLED + -cp *help*.pd $(ASCAPE_PATH)/ss_engine/pd/help/. +ifeq ($(findstring Linux,$(ASCAPE_OS)),Linux) + -cp *.pd_linux $(ASCAPE_PATH)/ss_engine/pd/externs/$(ASCAPE_OS)$(ASCAPE_ARCH)/. +endif +ifeq ($(findstring Darwin,$(SS_OS)),Darwin) + -cp *.pd_darwin $(ASCAPE_PATH)/ss_engine/pd/externs/$(ASCAPE_OS)$(ASCAPE_ARCH)/. +endif +endif + + -cp *.pd_linux $(PD_EXTRA_PATH)/. + -cp *help*.pd $(PD_DOC_PATH)/. + +clean: + -rm -f *.o *.pd_* so_locations -- cgit v1.2.1