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 ========================================================================

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

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

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