home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-11-23 | 446 b | 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
-