#	"@(#)Makefile	1.4 AVS 93/11/18"
#			Copyright (c) 1993 by
#			Advanced Visual Systems Inc.
#			All Rights Reserved
#	
#	This software comprises unpublished confidential information of
#	Advanced Visual Systems Inc. and may not be used, copied or made
#	available to anyone, except in accordance with the license
#	under which it is furnished.
#	
# For more information, please send email to avsemail@ncsc.org
# Makefile for 	   : city_scape
# Module Author    : Ian Curington

AVS_DEMO=.
include $(AVS_DEMO)/Demoinclude

all: city_scape 

port_mods: city_scape_$(PORTNAME) 

city_scape:	
	rm -rf city_scape
	$(MAKE) city_scape_$(PORTNAME)
	ln -s city_scape_$(PORTNAME) city_scape

city_scape_$(PORTNAME):  city_scape.c
	$(CC) $(CFLAGS) -o city_scape_$(PORTNAME) city_scape.c $(FLOWLIBS)

clean:
	rm -f core *.o city_scape 

port_mods_clean:
	rm -f city_scape_$(PORTNAME) 

port_mods_flush:
	rm -f city_scape_*

