home *** CD-ROM | disk | FTP | other *** search
- #########################################################################
- # #
- # Make file for a demo program that interfaces to the #
- # Async TermIO device driver from Basic. #
- # #
- #########################################################################
- # #
- # Copyright (c) 1988 Boulder Software Group #
- # P.O. BOX 14200 #
- # Boulder, CO 80308-4200 #
- # #
- # (303) 440-7868 (Voice) #
- # (303) 449-8612 (FAX) #
- # #
- #########################################################################
- #
- COMPILER = bc
- COMPILER_FLAGS = /O /E
- #
- #
- LIBRARIAN = lib
- LIBRARIAN_FLAGS =
- #
- #
- LINKER = link
- LINKER_OPTIONS =
- LINKER_LIBRARIES = \basic\lib\qb.lib
- #
- #
- #########################################################################
- #
- #
- iodemo.obj: iodemo.bas termio.h
- $(COMPILER) $(COMPILER_FLAGS) iodemo;
-
- ioctl.obj: ioctl.bas termio.h
- $(COMPILER) $(COMPILER_FLAGS) ioctl;
-
- ioctl.lib: ioctl.obj
- $(LIBRARIAN) $(LIBRARIAN_FLAGS) ioctl -+ioctl.obj;
-
- iodemo.exe: iodemo.obj ioctl.obj ioctl.lib
- $(LINKER) $(LINKER_FLAGS) iodemo,,,qb.lib ioctl.lib;
-