home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The AGA Experience 2
/
agavol2.iso
/
software
/
utilities
/
wb_tools
/
executive_v1.30
/
sysinfo.lzx
/
examples
/
test
/
Makefile
< prev
next >
Wrap
Makefile
|
2008-03-13
|
446b
|
33 lines
#
# Makefile for SysInfo.library/test
#
# This file is public domain.
#
# Author: Petri Nordlund <petrin@megabaud.fi>
#
# $Id: MF.compile 1.3 1995/11/04 18:18:15 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