Makefile 419 Bytes
#
# Makefile for adpcm tools
#

include $(ROOT)/usr/include/make/PRdefs

OBJECTS = playraw.o sampleio.o 

OPTIMIZER = -O

TARGETS=playraw

LCOPTS =-fullwarn 
LCINCS =-I. -I$(ROOT)/usr/include/PR

LLDOPTS=-L$(ROOT)/usr/lib/PR
LLDLIBS=-lm -laudio

default: $(TARGETS)

include $(COMMONRULES)

playraw: $(OBJECTS) playraw.h
	$(CC) $(OBJECTS) $(LDFLAGS) -o $@

install exports: default
	$(INSTALL) -F /usr/sbin $(TARGETS)