home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
drdobbs
/
c_spec
/
sources
/
makefile
< prev
next >
Wrap
Makefile
|
1986-02-20
|
835b
|
37 lines
# This makefile creates all the programs in the /util package
# using Polymake and the Microsoft C compiler. It assumes that
# all .h files are in a .h directory and all .c files are in
# the current directory
#
#
all: cat.exe cp.exe date.exe du.exe echo.exe grep.exe ls.exe \
mkdir.exe mv.exe p.exe pause.exe printenv.exe rm.exe \
rmdir.exe sub.exe
# ----------------------------------------------------------------------
LINK = -link util.lib
.SUFFIXES
.c.exe:
cc $*.c $(LINK) >>err
del $*.obj
# ----------------------------------------------------------------------
cat.exe:
cp.exe:
date.exe: \include\mydos.h
du.exe: \include\mydos.h
echo.exe:
grep.exe:
ls.exe: \include\getargs.h \include\dir.h
mkdir.exe:
mv.exe:
p.exe:
pause.exe:
printenv.exe:
rm.exe:
rmdir.exe:
sub.exe: