#/*********************************************************************
#  Title: emp_mux
#  Author: Alan M. Levi (levi@cs.psu.edu)
#  Last date of modification: March 10, 1993
#*********************************************************************/


#
# Before compiling, change the default listen port number in main.c
#

CC = gcc
LEX = flex
YACC = bison
SRC = main.c client.c
OBJS = client.o	main.o

 
CFLAGS = 
# CPPFLAGS = -I/depot/gnu/include/gcc-2.1/g++
LFLAGS = -v -i
YFLAGS = -dv

emp_mux: $(OBJS)
	$(CC) $(CFLAGS) -o emp_mux $(OBJS)

depend:
	cp GNUmakefile old.GNUmakefile
	mkmf -f GNUmakefile

#

###
