XCOMM =====================================================================
XCOMM Imakefile - VT widget distribution August 1995
XCOMM =====================================================================

XCOMM =====================================================================
XCOMM 
XCOMM $Id: Imakefile,v 1.1.1.1 1994/12/16 01:36:48 jck Exp $
XCOMM $Revision: 1.1.1.1 $
XCOMM $Date: 1994/12/16 01:36:48 $
XCOMM 
XCOMM $Log: Imakefile,v $
# Revision 1.0
# VT widget distribution
XCOMM 
XCOMM =====================================================================
XCOMM Uncomment this if you want to use ANY of the AUDIO sound systems
XCOMM #define COMPILE_IN_AUDIO    

XCOMM Uncomment this if you want to use RPLAY sound system
XCOMM #define USE_RPLAY


#if defined(HPArchitecture)
CFLAGS = -Aa -D_HPUX_SOURCE -D_TERMIOS_INCLUDED
#endif /* HPArchitecture */

#if defined(i386Architecture)
CFLAGS =
#endif /* linux */

#if defined(SGIArchitecture)
#endif /* SGIArchitecture */

#if defined(SparcArchitecture)
#if (OSMajorVersion==4)
#endif

#if (OSMajorVersion==5)
#endif

#endif /* SparcArchitecture */

    LOCAL_LIBRARIES = 

XCOMM ========================================================================
XCOMM Please don't change anything below this point - no need really - I hope.
XCOMM ========================================================================

genesc: genesc.o
	@echo Linking    genesc
	@cc genesc.o -o genesc
	@strip genesc
	@cp genesc ../bin
	@echo "Done"

genesc.o: genesc.c
	cc $(CFLAGS) -c genesc.c

clean_all:
	@echo Cleaning all files for genesc
	@rm -f genesc *.bak *.a *.o *.old Makefile
