aboutsummaryrefslogtreecommitdiff
path: root/MIDIvice/src/makefile
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-04-01 14:43:49 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:08:22 +0200
commit4e109c24c7f512fb5e3da18406a7e7af6b554506 (patch)
treeab2a62f3b82c5cd57e4a3fbb2b4cdc8f38f81a61 /MIDIvice/src/makefile
parent19ff5f54a824d7b3cd7f2683d9e524e446984735 (diff)
use autoconf build-system
svn path=/trunk/externals/hardware/; revision=9673
Diffstat (limited to 'MIDIvice/src/makefile')
-rw-r--r--MIDIvice/src/makefile75
1 files changed, 0 insertions, 75 deletions
diff --git a/MIDIvice/src/makefile b/MIDIvice/src/makefile
deleted file mode 100644
index 447d820..0000000
--- a/MIDIvice/src/makefile
+++ /dev/null
@@ -1,75 +0,0 @@
-current: all
-
-
-# the MIDIVICE-EXTERNAL-makefile
-# everything is GnuGPL that should come with the MIDIvice.tgz
-# NO WARRANTIES FOR ANYTHING
-# et cetera
-# 1999:forum::für::umläute:2001
-
-# make sure that the "m_pd.h" is somehow available either by putting it into this
-# directory, by adding it's path to the INCLUDE-path or by putting it into an
-# already included path, e.g. "/usr/local/include/"
-
-#these are the user adjustables : adjust them to fit into your system
-# PD will install to $(DESTDIR)$(INSTALLL_PREFIX)$(PDLIBDIR), which is /usr/local/lib/pd
-# by default
-DESTDIR =
-INSTALL_PREFIX = /usr/local
-PDLIBDIR = /lib/pd
-#these were the user adjustables
-
-
-TARGETS = MIDIvice \
- motormix
-
-# ----------------------- LINUX ----------------------------
-.SUFFIXES: .pd_linux
-
-
-LINUXOBJECTS = $(TARGETS:%=%.o)
-ARCH = $(shell uname --machine)
-
-PD_DIR = $(DESTDIR)$(INSTALL_PREFIX)$(PDLIBDIR)
-
-ifeq (${ARCH},alpha)
-AFLAGS = -mieee -mcpu=ev56
-endif
-
-LINCLUDE =
-
-$(LINUXOBJECTS): *.h
-
-CFLAGS = -O2 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS)
-
-everything: clean all install distclean
-
-distclean:
- touch dummy.o
- touch dummy.pd_linux
- touch dummy~
- touch _dummy
- rm *.o *.pd_linux *~ _*
-
-clean:
- touch dummy.o
- touch dummy.pd_linux
- rm *.o *.pd_linux
-
-all: $(LINUXOBJECTS)
-
- @echo :: $(LINUXOBJECTS)
-
- ld -export_dynamic -shared -o MIDIvice.pd_linux *.o -lc -lm
- strip --strip-unneeded MIDIvice.pd_linux
-
-.c.pd_linux:
- cc $(CFLAGS) -O2 -DPD -fPIC $(INCLUDE) -c -o $*.o $*.c
-
-
-install: installdocs
- install -m 644 MIDIvice.pd_linux $(PD_DIR)/extra
-
-installdocs:
- install -d $(PD_DIR)/doc/5.reference/MIDIvice
- install -m644 ../doc/* $(PD_DIR)/doc/5.reference/MIDIvice