
#
# makefile
#
#
# CAUTION: This file generated by:
#simpleADL [simpleADL 1.0v27]
	#using utilities kiva utility functions 1.0v4 May 2017
	#using tokeniser package simpleTokeniser 1.0v17 May 2017
	#using queue package simpleQueues 1.0v2 [May 8 2017]
	#using symbol table symbol table management 1.0v2

	#All software copyright Kiva Design Groupe LLC 2017. All rights reserved. See license for terms of use

# Do not edit and expect the changes to stick!
#

# makefile for r32

DEPS = utilities.h types.h model.h
CC = clang

objects = modelmain.o model.o utilities.o

modelr32 : $(objects)
	$(CC) -O2 -o modelr32 $(objects)
	sudo cp modelr32 /usr/local/bin
modelmain.o : $(DEPS)
utilities.o : $(DEPS)
model.o : $(DEPS)
.PHONY: clean
clean:
	rm -f modelr32 $(objects)

