home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-08-08 | 836 b | 33 lines |
- # Copyright (C) 1990 by Glenn Gribble; all rights are reserved.
- # This program may be used for any purposes including inclusion in
- # for profit programs. If the source is copied, the copyright notice
- # must be included. Please send bug fixes/reports to glenn@synaptics.com
- # This program is distributed without any warranty.
-
- .KEEP_STATE:
-
- .SUFFIXES: .cxx
- CCX=CC
- CCXFLAGS=
- COMPILE.cxx=$(CCX) $(CCXFLAGS) $(CPPFLAGS) -c
- LINK.cxx=$(CCX) $(CCXFLAGS) $(LDFLAGS)
- .cxx.o:
- $(COMPILE.cxx) $<
-
- # CCXFLAGS = -g
- CCXFLAGS = -g
-
- default: loadtest sub.o
-
- loadtest: loadtest.o loader.o loaderUtil.o
- $(LINK.cxx) -o loadtest loadtest.o loader.o loaderUtil.o
-
- sources = README Makefile loader.cxx loader.h loadtest.cxx \
- sub.cxx \
- loaderPrivate.h loaderTest.h \
- loaderUtil.cxx
-
- shar: loader.shar
- loader.shar:
- shar -o loader.shar $(sources)
-