- 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
83
pd-0.44-2/extra/makefile.subdir
Normal file
83
pd-0.44-2/extra/makefile.subdir
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
# this is the UNIX-style complicated layout dir, simple goes to $(prefix)/pd
|
||||
prefix = /usr/local
|
||||
libpddir = $(prefix)/lib/pd
|
||||
|
||||
.PHONY:
|
||||
|
||||
current: pd_linux
|
||||
|
||||
# ----------------------- Microsoft Visual C -----------------------
|
||||
MSCC = cl
|
||||
MSLN = link
|
||||
|
||||
pd_nt: $(NAME).dll
|
||||
|
||||
.SUFFIXES: .dll
|
||||
|
||||
PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo -D_CRT_SECURE_NO_WARNINGS \
|
||||
-D_CRT_NONSTDC_NO_DEPRECATE
|
||||
VC = "C:\\Program Files\\Microsoft Visual Studio 9.0\\VC"
|
||||
VSTK = "C:\\Program Files\\Microsoft SDKs\\Windows\\v6.0A"
|
||||
|
||||
PDNTINCLUDE = /I. /I..\\..\\src /I$(VC)\\include
|
||||
|
||||
PDNTLDIR = $(VC)\\lib
|
||||
PDNTLIB = /NODEFAULTLIB:libcmt /NODEFAULTLIB:oldnames /NODEFAULTLIB:kernel32 \
|
||||
$(PDNTLDIR)\\libcmt.lib $(PDNTLDIR)\\oldnames.lib \
|
||||
$(VSTK)\\lib\\kernel32.lib \
|
||||
..\\..\\bin\\pd.lib
|
||||
|
||||
.c.dll:
|
||||
$(MSCC) $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c
|
||||
$(MSLN) /nologo /dll /export:$(CSYM)_setup $*.obj $(PDNTLIB)
|
||||
|
||||
# ----------------------- LINUX i386 -----------------------
|
||||
|
||||
pd_linux: $(NAME).pd_linux
|
||||
|
||||
.SUFFIXES: .pd_linux
|
||||
|
||||
LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -fPIC \
|
||||
-Wall -W -Wshadow -Wstrict-prototypes \
|
||||
-Wno-unused -Wno-parentheses -Wno-switch $(CFLAGS)
|
||||
|
||||
LINUXINCLUDE = -I../../src
|
||||
|
||||
.c.pd_linux:
|
||||
$(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
|
||||
$(CC) -shared -o $*.pd_linux $*.o -lc -lm
|
||||
rm -f $*.o
|
||||
|
||||
# ----------------------- Mac OSX -----------------------
|
||||
|
||||
d_ppc: $(NAME).d_ppc
|
||||
d_fat: $(NAME).d_fat
|
||||
|
||||
.SUFFIXES: .d_ppc .d_fat
|
||||
|
||||
DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
|
||||
-Wno-unused -Wno-parentheses -Wno-switch
|
||||
|
||||
.c.d_ppc:
|
||||
$(CC) $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
|
||||
$(CC) -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o
|
||||
rm -f $*.o
|
||||
|
||||
.c.d_fat:
|
||||
$(CC) -arch i386 -arch ppc $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
|
||||
$(CC) -arch i386 -arch ppc -bundle -undefined suppress -flat_namespace \
|
||||
-o $*.d_fat $*.o
|
||||
rm -f $*.o
|
||||
|
||||
# ----------------------------------------------------------
|
||||
|
||||
distclean clean: clean-externals
|
||||
rm -f *.o *.pd_* *.l_* *.d_* *.m_* so_locations
|
||||
|
||||
# ----------------------------------------------------------
|
||||
# ----------------------------------------------------------
|
||||
|
||||
install:
|
||||
install -d $(DESTDIR)$(libpddir)/extra/$(NAME)
|
||||
install -m644 -p *.*_* $(DESTDIR)$(libpddir)/extra/$(NAME)
|
||||
install -m644 -p *.pd $(DESTDIR)$(libpddir)/extra/$(NAME)
|
||||
Loading…
Add table
Add a link
Reference in a new issue