1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# MS-DOS makefile for GNU cpio.
# Copyright (C) 1991, 1992 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# no more optimizations for MS C 6.00 than -Olt
# otherwise it produces bad code!
CC = bcc
MODEL = s
DEFS = -DSTDC_HEADERS=1 -DHAVE_VPRINTF -DHAVE_STRERROR -DNO_REMOTE -Dmain=_main
CFLAGS = -m$(MODEL) -I. $(DEFS)
LDFLAGS = -m$(MODEL)
LIBS =
OBJS = copyin.obj copyout.obj copypass.obj defer.obj dstring.obj fnmatch.obj \
global.obj main.obj tar.obj util.obj error.obj getopt.obj getopt1.obj \
filemode.obj version.obj alloca.obj xmalloc.obj xstrdup.obj \
makepath.obj bcopy.obj dirname.obj stripslash.obj tcexparg.obj
all: cpio.exe
cpio.exe: $(OBJS)
$(CC) -ecpio.exe $(LDFLAGS) *.obj $(LIBS)
.c.obj:
$(CC) -c $(CFLAGS) $<
# Need to use -A to get __STDC__ defined, but the other files can't
# use -A because they use MS-DOS non-ANSI things. Turbo C is stupid.
error.obj: error.c
$(CC) -c -A $(CFLAGS) error.c
copyin.obj: cpio.h cpiohdr.h dstring.h extern.h filetypes.h fnmatch.h rmt.h system.h
copyout.obj: cpio.h cpiohdr.h dstring.h extern.h filetypes.h rmt.h system.h
copypass.obj: cpio.h cpiohdr.h dstring.h extern.h filetypes.h system.h
dstring.obj: dstring.h
global.obj: cpio.h cpiohdr.h dstring.h extern.h system.h
main.obj: cpio.h cpiohdr.h dstring.h extern.h filetypes.h rmt.h
tar.obj: filetypes.h cpio.h cpiohdr.h dstring.h extern.h rmt.h tar.h tarhdr.h system.h
util.obj: extern.h rmt.h system.h
clean:
rm cpio.exe *.obj
|