home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-04 | 1.1 KB | 44 lines |
- ############################ -*- Mode: Makefile -*- ###########################
- ## Imakefile --
- ## ITIID : $ITI$ $Header $__Header$
- ## Author : Ulrich Pfeifer
- ## Created On : Mon Mar 21 15:19:18 1994
- ## Last Modified By: Huynh Quoc T. Tung
- ## Last Modified On: Wed Apr 27 18:32:04 1994
- ## Update Count : 22
- ## Status : Unknown, Use with caution!
- ###############################################################################
-
-
- #include "../Install.tmpl"
-
- SRCS = regexp.c regerror.c regsub.c try.c
- OBJS = regexp.o regerror.o regsub.o
-
- MANSUFFIX = 3
- #ifdef ISOxxx
- EXTRA_INCLUDES = -I../ctype -I.
- INCROOT = .
- ISOOBJS = ../ctype/ctype.o
- #else
- EXTRA_INCLUDES = -I.
- INCROOT = .
- #endif /* ISO */
-
- NormalProgramTarget(try,try.o $(ISOOBJS),libregexp.a,libregexp.a,)
-
- test: try tests
- @echo 'No news is good news...'
- try <tests
-
- veryclean:: clean
- $(RM) try libregexp.a
-
- NormalLibraryTarget(regexp,$(OBJS))
- DependTarget()
-
- /* don't have the macros !?
- InstallManPage(regexp,$(MANDIR)/man3)
- */
-
-