#
# GCC makefile for SysInfo.library/test
#
# This file is public domain.
#
# Author: Petri Nordlund <petrin@megabaud.fi>
#
# $Id: MF.compile 1.5 1996/09/05 23:20:05 petrin Exp petrin $
#

CFLAGS = -O


SHELL = USR:BIN/sh

# Source files
SRCS   = test.c

# Object files
OBJS   = $(SRCS:.c=.o)


all : test

test : test.o
	gcc $(CFLAGS) -o test $^ -lamiga -lauto -lsysinfo

test.o : test.c defs.h
	gcc $(CFLAGS) -c test.c

clean:
	-delete test test.o
