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

vtedit: vtedit.o vtclib.o browse
	@echo Linking    vtedit
	@cc vtedit.o vtclib.o -o vtedit
	@strip vtedit
	@cp vtedit ../bin
	@echo "Done"

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

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

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

vtclib.o: vtclib.c vtclib.h
	cc $(CFLAGS) -c vtclib.c
clean_all:
	@echo Cleaning all files for the Vt C library
	@rm -f vtedit browse *.bak *.a *.o *.old Makefile
