From c12ed3a5343a4246efb4f064498c23894f6d8eeb Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 8 Jun 2009 04:52:30 +0000 Subject: switched 'apple' lib over to new standalone Makefile svn path=/trunk/externals/apple/; revision=11709 --- Makefile | 112 +++++++++++++++++++++++++++++++++++++++++----- ambient_light_sensor.libs | 1 - apple-meta.pd | 8 ++++ iodisplay.libs | 1 - keyboard_light.libs | 1 - sudden_motion_sensor.libs | 1 - 6 files changed, 110 insertions(+), 14 deletions(-) delete mode 100644 ambient_light_sensor.libs create mode 100644 apple-meta.pd delete mode 100644 iodisplay.libs delete mode 100644 keyboard_light.libs delete mode 100644 sudden_motion_sensor.libs diff --git a/Makefile b/Makefile index 2b8688b..39cf5a6 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,109 @@ -TARGET := $(shell pwd | sed 's|.*/\(.*\)$$|\1|') -EXTERNALS_ROOT := $(shell pwd | sed 's|^\(/.*externals\).*|\1|') +# to use this Makefile for your project, you should only need to add your +# source files to the SOURCES variable. For objects that only build on +# certain platforms, add those to the SOURCES line for the right platforms. -default: - make -C $(EXTERNALS_ROOT) $(TARGET) +SOURCES = + +LIBRARY_NAME := $(shell basename `pwd`) + +pd_src = ../../pd +objectsdir = $(pd_src)/extra + +CFLAGS = -DPD -I$(pd_src)/src -Wall -W -g +LDFLAGS = +LIBS = + +UNAME := $(shell uname -s) +ifeq ($(UNAME),Darwin) + SOURCES += ambient_light_sensor.c iodisplay.c keyboard_light.c sudden_motion_sensor.c + EXTENSION = pd_darwin + OS = macosx + OPT_CFLAGS = -fast + FAT_FLAGS = -arch i386 -arch ppc -mmacosx-version-min=10.4 + CFLAGS += -fPIC $(FAT_FLAGS) + LDFLAGS += -bundle -undefined dynamic_lookup $(FAT_FLAGS) -framework IOKit + LIBS += -lc + STRIP = strip -x + endif +ifeq ($(UNAME),Linux) + SOURCES += + 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 += + 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_src)/bin -L$(pd_src)/obj -lpd -lwsock32 -lkernel32 -luser32 -lgdi32 + STRIP = strip --strip-unneeded -R .note -R .comment +endif + +CFLAGS += $(OPT_CFLAGS) + + +.PHONY = all 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)" + $(STRIP) $*.$(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) + $(STRIP) $(LIBRARY_NAME).$(EXTENSION) + rm -f -- $*.o + + +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 $(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(LIBRARY_NAME)-meta.pd $(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(SOURCES:.c=.$(EXTENSION)) $(objectsdir)/$(LIBRARY_NAME) + +# install library linked as single binary +single_install: $(LIBRARY_NAME) install-doc install-exec + install -d $(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(LIBRARY_NAME).$(EXTENSION) $(objectsdir)/$(LIBRARY_NAME) + +install-doc: + install -d $(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(SOURCES:.c=-help.pd) $(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(wildcard *.pd) $(objectsdir)/$(LIBRARY_NAME) + +install-exec: + install -d $(objectsdir)/$(LIBRARY_NAME) + install -m644 -p $(wildcard *.pd) $(objectsdir)/$(LIBRARY_NAME) -install: - make -C $(EXTERNALS_ROOT) $(TARGET)_install clean: - make -C $(EXTERNALS_ROOT) $(TARGET)_clean + -rm -f -- $(SOURCES:.c=.o) + -rm -f -- $(SOURCES:.c=.$(EXTENSION)) + -rm -f -- $(LIBRARY_NAME).$(EXTENSION) + + +dist: + cd .. && tar --exclude=.svn -cjpf $(LIBRARY_NAME)-$(OS).tar.bz2 $(LIBRARY_NAME) -test_locations: - make -C $(EXTERNALS_ROOT) test_locations etags: - etags *.[ch] ~/code/pure-data/trunk/pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h + etags *.[ch] ../../pd/src/*.[ch] /usr/include/*.h /usr/include/*/*.h diff --git a/ambient_light_sensor.libs b/ambient_light_sensor.libs deleted file mode 100644 index 334d5d6..0000000 --- a/ambient_light_sensor.libs +++ /dev/null @@ -1 +0,0 @@ --framework IOKit diff --git a/apple-meta.pd b/apple-meta.pd new file mode 100644 index 0000000..c1aa409 --- /dev/null +++ b/apple-meta.pd @@ -0,0 +1,8 @@ +#N canvas 10 10 200 200 10; +#N canvas 20 20 420 300 META 0; +#X text 10 10 META this is a prototype of a libdir meta file; +#X text 10 30 NAME apple; +#X text 10 50 AUTHOR Hans-Christoph Steiner; +#X text 10 70 DESCRIPTION support for Apple-specific functions; +#X text 10 90 LICENSE GPLv2 or later; +#X restore 10 10 pd META; diff --git a/iodisplay.libs b/iodisplay.libs deleted file mode 100644 index 334d5d6..0000000 --- a/iodisplay.libs +++ /dev/null @@ -1 +0,0 @@ --framework IOKit diff --git a/keyboard_light.libs b/keyboard_light.libs deleted file mode 100644 index 334d5d6..0000000 --- a/keyboard_light.libs +++ /dev/null @@ -1 +0,0 @@ --framework IOKit diff --git a/sudden_motion_sensor.libs b/sudden_motion_sensor.libs deleted file mode 100644 index 334d5d6..0000000 --- a/sudden_motion_sensor.libs +++ /dev/null @@ -1 +0,0 @@ --framework IOKit -- cgit v1.2.1