home *** CD-ROM | disk | FTP | other *** search
- # V39 INTUITION DEMOS lmkfile
- #
- # (c) Copyright 1992 Commodore-Amiga, Inc. All rights reserved.
- #
- # This software is provided as-is and is subject to change; no warranties
- # are made. All use is at your own risk. No liability or responsibility
- # is assumed.
- #
- # These demos show off some of the new V39 Intuition features:
- #
- # attachdemo.c - demonstrates handling attached screens
- #
- # doublebuffer.c - shows double-buffering, attached screens, menu lending
- #
- # frameidemo.c - shows frame types from frameiclass
- #
- # gadgethelp.c - shows help and bounds on a prop gadget
- #
- # makevisible.c - shows off SPOS_MAKEVISIBLE feature
- #
- # nlmenu.c - shows use of NewLook menus using Intuition and GadTools
- #
- # relspecial.c - shows special gadget relativity
- #
- #
- # HARDWARE-SPECIFIC DEMOS:
- #
- # 8hamdemo.c - shows off 256000 colors simultaneously
- #
- # pointerdemo.c - shows off new pointer features
- #
- #
-
- CFILES = attachdemo.c \
- doublebuffer.c \
- frameidemo.c \
- gadgethelp.c \
- makevisible.c \
- nlmenu.c \
- relspecial.c \
- 8hamdemo.c \
- pointerdemo.c
-
- EXEFILES = attachdemo \
- doublebuffer \
- frameidemo \
- gadgethelp \
- makevisible \
- nlmenu \
- relspecial \
- 8hamdemo \
- pointerdemo
-
- all: $(EXEFILES)
-
- attachdemo: attachdemo.c
- lc -L $*
-
- doublebuffer: doublebuffer.c
- lc -L $*
-
- frameidemo: frameidemo.c
- lc -L $*
-
- gadgethelp: gadgethelp.c
- lc -L $*
-
- makevisible: makevisible.c
- lc -L $*
-
- nlmenu: nlmenu.c
- lc -L $*
-
- relspecial: relspecial.c
- lc -L -v $*
-
- 8hamdemo: 8hamdemo.c
- lc -L $*
-
- pointerdemo: pointerdemo.c
- lc -L $*
-
- lzh: idemos.lzh
-
- idemos.lzh: lmkfile $(CFILES) $(EXEFILES)
- lharc u idemos.lzh lmkfile $(CFILES)
- lharc u idemos.lzh $(EXEFILES)
-