[PD-cvs] externals/zexy/src Makefile.nt,1.3,1.4

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Sun Oct 23 21:56:29 CEST 2005


Update of /cvsroot/pure-data/externals/zexy/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5675

Modified Files:
	Makefile.nt 
Log Message:
compiled with vc7


Index: Makefile.nt
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/Makefile.nt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile.nt	15 Jun 2005 16:27:40 -0000	1.3
--- Makefile.nt	23 Oct 2005 19:56:27 -0000	1.4
***************
*** 1,43 ****
! # ----------------------- NT -----------------------
! LIBNAME=zexy
! 
! current: $(LIBNAME)
! 
! PREFIX="C:\Programme\pd"
! 
! EXT=dll
! CC=cl
! LD=link
! 
! DEFS=/D__WIN32__ /DPD /DZEXY_LIBRARY
! IFLAGS=/I. /I$(PREFIX)\src
! AFLAGS= 
! WFLAGS=/W3 /WX /nologo
! 
! .SUFFIXES: .$(EXT)
! 
! include Make.source
! 
! ## for LinePrinter-support: (if you don't want it, comment it out)
! DEFS = $(DEFS) /DZ_WANT_LPT
! 
! 
! CFLAGS = /O2 $(DEFS) $(IFLAGS) $(WFLAGS)
! LIBS = libc.lib oldnames.lib kernel32.lib $(PREFIX)\bin\pd.lib
! LFLAGS = /dll /export:$(LIBNAME)_setup
! 
! 
! TARGETS = $(SOURCES:.c=.obj)
! 
! .c.obj:
! 	cl $(CFLAGS) /c $*.c
! 
! 
! $(LIBNAME): $(TARGETS)
! 	$(LD) $(LFLAGS) /out:..\$(LIBNAME).$(EXT) *.obj $(LIBS)
! 
! clean:
! 	-del -f *.$(EXT) *.obj ..\$(LIBNAME).lib ..\$(LIBNAME).exp *.lib *.exp
! 
! cleaner: clean
! 	-del -f *~ _* config.* ..\$(LIBNAME).$(EXT)
--- 1,47 ----
! # ----------------------- NT -----------------------
! 
! .PHONY: clean cleaner all zexy
! 
! LIBNAME=zexy
! 
! current: $(LIBNAME)
! 
! PREFIX=C:\Programme\pd
! 
! EXT=dll
! CC=cl
! LD=link
! 
! DEFS=/D__WIN32__ /DPD /DZEXY_LIBRARY
! IFLAGS=/I. /I$(PREFIX)\src
! AFLAGS= 
! WFLAGS=/W3 /WX /nologo
! 
! ## for LinePrinter-support: (if you don't want it, comment it out)
! DEFS += /DZ_WANT_LPT
! 
! .SUFFIXES: .$(EXT)
! 
! SOURCES=$(sort $(filter %.c, $(wildcard *.c)))
! 
! CFLAGS = /O2 $(DEFS) $(IFLAGS) $(WFLAGS)
! LIBS = libc.lib oldnames.lib kernel32.lib pd.lib
! LFLAGS = /dll /export:$(LIBNAME)_setup /LIBPATH:"$(PREFIX)\bin"
! 
! 
! TARGETS = $(SOURCES:.c=.obj)
! 
! 
! $(TARGETS): %.obj : %.c
! 	$(CC) $(CFLAGS) /c $*.c
! 
! 
! $(LIBNAME): $(TARGETS)
! 	$(LD) $(LFLAGS) /out:$(LIBNAME).$(EXT) *.obj $(LIBS)
! 
! clean:
! 	del /f *.obj $(LIBNAME).$(EXT)
! 
! cleaner: clean
! 	del /f *~ _* config.* $(LIBNAME).$(EXT)
! 





More information about the Pd-cvs mailing list