head	1.3;
access;
symbols
	Distribution_00:1.1
	Distribution_01:1.3;
locks; strict;
comment	@## @;


1.3
date	95.04.06.05.48.03;	author rowlands;	state Exp;
branches;
next	1.2;

1.2
date	95.04.06.05.42.26;	author rowlands;	state Exp;
branches;
next	1.1;

1.1
date	95.04.06.02.06.11;	author rowlands;	state Exp;
branches;
next	;


desc
@MPEG-2 public C encoder
@


1.3
log
@Added file lingual.c
@
text
@###############################################################################
## Copyright (c) 1995 MPEG/audio software simulation group
## All Rights Reserved
## $Id: makefile,v 1.2 1995/04/06 05:42:26 rowlands Exp rowlands $
##
## MPEG/audio coding/decoding software, work in progress
##   NOT for public distribution until verified and approved by the
##   MPEG/audio committee.
##
## $Log: makefile,v $
## Revision 1.2  1995/04/06  05:42:26  rowlands
## Added RCS header and multi-machine support
##
###############################################################################

###############################
# Compiler flags for UNIX
CC		= gcc
CFLAGS		= -DUNIX -g2
LFLAGS		= -lm
EXE_SUFFIX	=
OBJ_SUFFIX	= .o

###############################
# Compiler flags for DOS MSC6.0
#CC		= cl
#CFLAGS		= -Zi -Gt -AH -DMSDOS -DMS_DOS
#LFLAGS		= -link /stack:0x8000
#EXE_SUFFIX	= .exe
#OBJ_SUFFIX	= .obj

.c$(OBJ_SUFFIX):
	$(CC) -c $(CFLAGS) $<

ENCOBJS = encode$(OBJ_SUFFIX) common$(OBJ_SUFFIX) musicin$(OBJ_SUFFIX) \
	subs$(OBJ_SUFFIX) psy$(OBJ_SUFFIX) tonal$(OBJ_SUFFIX) \
	predisto$(OBJ_SUFFIX) lingual$(OBJ_SUFFIX)

musicin$(EXE_SUFFIX) : $(ENCOBJS)
	$(CC) $(CFLAGS) -o $@@ $(ENCOBJS) $(LFLAGS)

$(ENCOBJS): common.h encoder.h
@


1.2
log
@Added RCS header and multi-machine support
@
text
@d4 1
a4 1
## $Id$
d10 4
a13 1
## $Log$
d37 1
a37 1
	predisto$(OBJ_SUFFIX)
@


1.1
log
@Initial revision
@
text
@d1 11
a11 4
# Makefile for Indigo R4000, debugging info present in file. 
# Latest change 1993-04-06 Susanne Ritscher
# only for encoding
## Modiffications faites par JMZ 03/03/1995
d13 7
a19 2
# ANSI-C (default), include debug info, allow profiling, full warnings
CFLAGS = -g2 
d21 7
d29 2
a30 5
ENCOBJS = encode.o common.o musicin.o subs.o psy.o tonal.o predistortion.o lingual.o
musicin: $(ENCOBJS)
# output, math lib.
	gcc -o musicin $(ENCOBJS) -lm 
$(ENCOBJS): common.h encoder.h
d32 3
d36 4
@
