home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine 1995 / ARCHIVE95.iso / discs / shareware / share_46 / showdir / Makefile < prev    next >
Makefile  |  1991-10-21  |  1KB  |  33 lines

  1. # Makefile for 'showdir'.
  2. #
  3. # Copyright (C) 1991 Neil Hoggarth
  4. #
  5. #  It is assumed that the system variable C$Path gives the location of
  6. # the standard Acorn library files. If this is not the case then either set
  7. # C$LibRoot accordingly or edit this file to reflect your set up.
  8. #
  9. #   This program is free software; you can redistribute it and/or modify
  10. #   it under the terms of the GNU General Public License as published by
  11. #   the Free Software Foundation; either version 1, or (at your option)
  12. #   any later version.
  13. #
  14. #   This program is distributed in the hope that it will be useful,
  15. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. #   GNU General Public License for more details.
  18. #
  19. #   You should have received a copy of the GNU General Public License
  20. #   along with this program; if not, write to the Free Software
  21. #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. #
  23.  
  24. CC=cc
  25. CFLAGS=
  26.  
  27. showdir: showdir.c
  28.   $(CC) $(CFLAGS) -o showdir c.showdir C:RISC_OSlib.o
  29.   squeeze showdir
  30.  
  31. clean:
  32.   remove o.showdir
  33.