blob: 12272d1bb1771ade9b6180c24880a5c664869867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
current: irix5
TARGETS = linux \
ann_som
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 *~
|