diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-03-22 20:58:25 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-03-22 20:58:25 +0000 |
commit | 2b60d55c919e7588f5aff15936e83c300b3660bb (patch) | |
tree | 14d860de7f28083d3756ad91b627de70f26788f6 /src/makefile.irix | |
parent | c500bc542cb7cc78d6dac3f7da3bff626056b1aa (diff) |
zexy-2.0:
- use of abstractions for objects that allow it
- some objects are build both as externals and abstractions (as slower fallbacks)
- code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library)
- matrix-objects have moved to iemmatrix !!
svn path=/trunk/externals/zexy/; revision=2641
Diffstat (limited to 'src/makefile.irix')
-rw-r--r-- | src/makefile.irix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/makefile.irix b/src/makefile.irix deleted file mode 100644 index b644cf1..0000000 --- a/src/makefile.irix +++ /dev/null @@ -1,29 +0,0 @@ -current: irix5 - -TARGETS = zexy \ - z_sfplay z_sfrecord \ - z_noise z_testfun \ - z_limiter \ - z_dfreq z_sigbin \ - z_sigzero z_pdf z_average \ - z_nop z_zdelay z_swap z_quantize \ - z_makesymbol z_tabread4 \ - z_datetime z_index \ - z_connective z_sigpack z_sort \ - z_multiplex z_drip z_pack \ - -SGI5OBJECTS = $(TARGETS:%=%.pd_irix5) - -# ----------------------- IRIX ---------------------------- -.SUFFIXES: .pd_irix5 -SGIINCLUDE = -I../../src - -irix5: $(SGIOBJECTS) - -.c.pd_irix5: - cc -g -w2 -fullwarn -mips2 -DFTS $(SGIINCLUDE) -c $*.c - ld -elf -shared -rdata_shared -o $*.pd_irix5 $*.o - rm $*.o - -clean:: - rm *.o obj/* *.pd_irix5 so_locations rm *.pd_linux *~ |