# Makefile for GNU Archimedes.
# This file must be present in directory archimedes-0.0.1/src .
# It is a very simple file to create and install
# the binaries for GNU Archimedes release 0.0.1
# Created on 21 sep.2004, Siracusa, Italy, Jean Michel Sellier
# Last Modif. : 21 sep.2004, Siracusa, Italy, J.M.Sellier

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004  Free Software Foundation, Inc.
# This Makefile is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.

CC=gcc
LDLIBS=-lm -O3 
CFLAGS=-Wall -g

archimedes: archimedes.o

clean:
	rm -f archimedes
	rm -f *.o

install:
	cp archimedes /usr/local/bin/.
