home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / Triton / Source / demos / SMakefile < prev    next >
Makefile  |  1998-05-23  |  2KB  |  60 lines

  1. #
  2. #  OpenTriton -- A free release of the triton.library source code
  3. #  Copyright (C) 1993-1998  Stefan Zeiger
  4. #
  5. #  This program is free software; you can redistribute it and/or modify
  6. #  it under the terms of the GNU General Public License as published by
  7. #  the Free Software Foundation; either version 2 of the License, or
  8. #  (at your option) any later version.
  9. #
  10. #  This program is distributed in the hope that it will be useful,
  11. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. #  GNU General Public License for more details.
  14. #
  15. #  You should have received a copy of the GNU General Public License
  16. #  along with this program; if not, write to the Free Software
  17. #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. #
  19. #  SMakefile - Makefile for SAS/C SMake
  20. #
  21.  
  22.  
  23. CC    = sc
  24.  
  25. CFLAGS    = LINK LIB=lib:triton.lib NOICONS
  26.  
  27. all: Demo EnvPrint trLogo ToolManager1 ToolManager2 ToolManager3 ProgInd CustomClass
  28.  
  29. Demo: Demo.c
  30.     @$(CC) $(CFLAGS) $@
  31.     delete $@.o $@.lnk
  32.  
  33. EnvPrint: EnvPrint.c
  34.     @$(CC) $(CFLAGS) $@
  35.     delete $@.o $@.lnk
  36.  
  37. trLogo: trLogo.c
  38.     @$(CC) $(CFLAGS) $@
  39.     delete $@.o $@.lnk
  40.  
  41. ToolManager1: ToolManager1.c
  42.     @$(CC) $(CFLAGS) $@
  43.     delete $@.o $@.lnk
  44.  
  45. ToolManager2: ToolManager2.c
  46.     @$(CC) $(CFLAGS) $@
  47.     delete $@.o $@.lnk
  48.  
  49. ToolManager3: ToolManager3.c
  50.     @$(CC) $(CFLAGS) $@
  51.     delete $@.o $@.lnk
  52.  
  53. ProgInd: ProgInd.c
  54.     @$(CC) $(CFLAGS) $@
  55.     delete $@.o $@.lnk
  56.  
  57. CustomClass: CustomClass.c
  58.     @$(CC) $(CFLAGS) MATH=standard $@
  59.     delete $@.o $@.lnk
  60.