SGI Irix audio sample code.
[ahxm.git] / makefile
blob1d65726d864c5a2e1929782dc2867c2f0102787d
1 OBJS=output.o out_raw.o out_wav.o out_oss.o out_pipe.o
2 LIB=annhell.a
3 DEFS=-Wall -g
5 wav: wav.c annhell.a
6 $(CC) $(DEFS) wav.c annhell.a -lm -o wav
8 $(LIB): $(OBJS)
9 ar rv $(LIB) $(OBJS)
11 %.o: %.c
12 $(CC) $(DEFS) $(CFLAGS) -c $<
14 clean:
15 rm -f wav *.o *.a *.wav *.raw