home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-10-21 | 1.1 KB | 33 lines |
- # Makefile for 'showdir'.
- #
- # Copyright (C) 1991 Neil Hoggarth
- #
- # It is assumed that the system variable C$Path gives the location of
- # the standard Acorn library files. If this is not the case then either set
- # C$LibRoot accordingly or edit this file to reflect your set up.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 1, or (at your option)
- # any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- #
-
- CC=cc
- CFLAGS=
-
- showdir: showdir.c
- $(CC) $(CFLAGS) -o showdir c.showdir C:RISC_OSlib.o
- squeeze showdir
-
- clean:
- remove o.showdir
-