Makefile 543 Bytes
#!smake
#
# Makefile for audio library
#

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

OPTIMIZER = -O

TARGETS=libmpegaud.a

LCOPTS = -non_shared -woff 613 -mips2 -fullwarn -G 0 
LCINCS = -I. -I$(ROOT)/usr/include/PR -I$(ROOT)/usr/include -I$(ROOT)/PR/include
LCDEFS = -D_DEBUG

CFILES  = \
	bitstream.c \
	decode.c 

libmpegaud.a: $(OBJECTS) Makefile
	$(AR) rc $@ $(OBJECTS)

default: $(TARGETS)

include $(COMMONRULES)

exports: default
	$(INSTALL) -m 444 -F /usr/lib/PR $(TARGETS)

install: default
	$(INSTALL) -m 444 -F /usr/lib/PR $(TARGETS)