- Reestructuración de ficheros y directorios general
- merge v0.01 --> Añadido fileselector - Añadidas fuentes de Gem y Pure Data - pix2jpg incluído en Gem. Archivos de construcción de Gem modificados. - Añadido fichero ompiling.txt con instrucciones de compilación
This commit is contained in:
parent
c9adfd020b
commit
e85d191b46
3100 changed files with 775434 additions and 3073 deletions
44
pd-0.44-2/portmidi/Makefile.am
Normal file
44
pd-0.44-2/portmidi/Makefile.am
Normal file
|
@ -0,0 +1,44 @@
|
|||
# this is built as a "libtool convenience library"
|
||||
# http://sources.redhat.com/automake/automake.html#Libtool-Convenience-Libraries
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
AM_CFLAGS = -DNEWBUFFER
|
||||
INCLUDES = -Ipm_common -Iporttime
|
||||
|
||||
noinst_LTLIBRARIES = libportmidi.la
|
||||
|
||||
libportmidi_la_SOURCES = pm_common/pmutil.c pm_common/portmidi.c
|
||||
|
||||
if LINUX
|
||||
INCLUDES += -Ipm_linux
|
||||
libportmidi_la_SOURCES += porttime/ptlinux.c \
|
||||
pm_linux/pmlinux.c \
|
||||
pm_linux/pmlinuxalsa.c
|
||||
endif
|
||||
|
||||
if MACOSX
|
||||
INCLUDES += -Ipm_mac
|
||||
libportmidi_la_SOURCES += porttime/ptmacosx_cf.c \
|
||||
pm_mac/pmmac.c \
|
||||
pm_mac/pmmacosxcm.c
|
||||
endif
|
||||
|
||||
if WINDOWS
|
||||
INCLUDES += -Ipm_win
|
||||
libportmidi_la_SOURCES += porttime/porttime.c \
|
||||
porttime/ptwinmm.c \
|
||||
pm_win/pmwin.c \
|
||||
pm_win/pmwinmm.c
|
||||
endif
|
||||
|
||||
# include the headers in the dist so you can build
|
||||
nobase_noinst_HEADERS = \
|
||||
pm_common/pminternal.h \
|
||||
pm_common/pmutil.h \
|
||||
pm_common/portmidi.h \
|
||||
pm_linux/pmlinux.h \
|
||||
pm_linux/pmlinuxalsa.h \
|
||||
pm_mac/pmmac.h \
|
||||
pm_mac/pmmacosxcm.h \
|
||||
pm_win/pmdll.h \
|
||||
pm_win/pmwinmm.h \
|
||||
porttime/porttime.h
|
Loading…
Add table
Add a link
Reference in a new issue