home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-04-24 | 1.4 KB | 58 lines |
- #************************************************************************
- # $Id: Makefile_v 1.1 96/04/23 02:48:49 hiro Exp $
- # Copyright (c) 1996 ARK Systems USA
- # All rights reserved.
- #
- # This source code is the proprietary confidential of ARK Systems USA,
- # and is provided to licesee for documentation and education purposes
- # only. Reproduction, publication, or distribution in any form to a
- # party other than the licensee without prior written permit from ARK
- # Systems USA is strictly prohibited.
- #
- # Product name: diff - ported from GNU
- # Files created:
- #
- # $Date: 96/04/23 02:48:49 $
- # $Revision: 1.1 $
- #
- # $Log: Makefile_v $
- # Revision 1.1 96/04/23 02:48:49 hiro
- # Initial revision
- #
- # Revision 1.1 96/04/07 16:43:50 hiro
- # Initial revision
- #
- #*************************************************************************
-
- ODIR = BUILD/CMDS
- RDIR = RELS
- TDIR = /tmp
- #TDIR = .
- IDIR = /dd/DEFS
-
- CC = cc
- LD = cc
- CD = chd
-
- #INCLUDES = -v=/dd/MWOS/OS9000/SRC/DEFS -v=/dd/DEFS -v=.
- INCLUDES = -v=/dd/DEFS -v=/dd/MWOS/OS9000/SRC/DEFS -v=.
-
- #CFLAGS = -td=$(TDIR) $(INCLUDES) -b
- CFLAGS = -D_OS9000 -t=$(TDIR) $(INCLUDES) -g
-
- LDFLAGS = -g
- LIBS =
-
- o = .r
- diff_o = diff$o analyze$o cmpbuf$o dir$o io$o util$o \
- context$o ed$o ifdef$o normal$o side$o \
- fnmatch$o getopt$o getopt1$o regex$o version$o \
- stat$o
-
- $(ODIR)/diff : $(diff_o)
- $(CD) $(RDIR); $(LD) $(LDFLAGS) $(LIBS) $(diff_o) -FD=../$@; \
- fixmod -uo=0.0 ../$@
-
- $(diff_o) :
- $(CC) $(CFLAGS) $*.c -r=$(RDIR)
-