home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 21
/
CD_ASCQ_21_040595.iso
/
dos
/
prg
/
c
/
freedos3
/
source
/
jh_utils
/
makefile
< prev
next >
Wrap
Makefile
|
1995-01-07
|
2KB
|
83 lines
###############################################################################
# Makefile for the Free-DOS project's file utilities.
# Please send comments and bug reports to the Free-DOS maintainer at
# freedos@sunsite.unc.edu, Internet mail.
###############################################################################
CC = qcl
CL = qcl
AS = qcl
# G - General, D - Debugging, R - Runtime
CFLAGS_G =
CFLAGS_D = /Od / Zi / Zr
CFLAGS_R = /O / DNDEBUG
CFLAGS = $ (CFLAGS_G) $ (CFLAGS_R)
# G - General, D - Debugging, R - Runtime
AFLAGS_G = /Cx / P1
AFLAGS_D = /Zi
AFLAGS_R = /DNDEBUG
AFLAGS = $ (AFLAGS_G) $ (AFLAGS_D)
# G - General, D - Debugging, R - Runtime
LFLAGS_G = /NOI
LFLAGS_D = /INCR / CO
LFLAGS_R =
LFLAGS = $ (LFLAGS_G) $ (LFLAGS_D)
RUNFLAGS =
OBJS_EXT =
LIBS_EXT =
# NOTE: As of 12/30/1994, you can just specify "make" or "make all" to
# generate all of the Free-DOS file utilities automagically.
all:break cls date del find help more pause reboot tee time type \
unix2dos ver
break:
-echo BREAK no longer has any associated code with it.
cls:cls.c color.c getopt.c
$ (CC) $ (CFLAGS) cls.c color.c getopt.c
date:date.c getopt.c
$ (CC) $ (CFLAGS) date.c getopt.c
del:del.c getopt.c
$ (CC) $ (CFLAGS) del.c getopt.c
find:find.c ffind.c getopt.c
$ (CC) $ (CFLAGS) find.c ffind.c getopt.c
help:help.c fbasenam.c getopt.c
$ (CC) $ (CFLAGS) help.c fbasenam.c getopt.c
more:more.c pagef.c bioskey.c lines.c getopt.c
$ (CC) $ (CFLAGS) more.c pagef.c bioskey.c lines.c GRAPHICS.LIB getopt.c
pause:pause.c echov.c getkey.c getopt.c
$ (CC) $ (CFLAGS) pause.c echov.c getkey.c getopt.c
reboot:reboot.c getopt.c
$ (CC) $ (CFLAGS) reboot.c getopt.c
tee:tee.c outtee.c getopt.c
$ (CC) $ (CFLAGS) tee.c outtee.c getopt.c
time:time.c getopt.c
$ (CC) $ (CFLAGS) time.c getopt.c
type:type.c fcat.c blank.c getopt.c
$ (CC) $ (CFLAGS) type.c fcat.c blank.c getopt.c
unix2dos:unix2dos.c trch.c getopt.c
$ (CC) $ (CFLAGS) unix2dos.c trch.c getopt.c
ver:ver.c getopt.c
$ (CC) $ (CFLAGS) ver.c getopt.c