2005-05-19 20:07:13 +04:00
|
|
|
#
|
|
|
|
# "$Id$"
|
|
|
|
#
|
|
|
|
# GNU ZIP library makefile for the Fast Light Toolkit (FLTK).
|
|
|
|
#
|
2011-02-27 18:50:40 +03:00
|
|
|
# Copyright 1998-2011 by Bill Spitzak and others.
|
2005-05-19 20:07:13 +04:00
|
|
|
#
|
2011-07-19 08:49:30 +04:00
|
|
|
# This library is free software. Distribution and use rights are outlined in
|
|
|
|
# the file "COPYING" which should have been included with this file. If this
|
|
|
|
# file is missing or damaged, see the license at:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/COPYING.php
|
2005-05-19 20:07:13 +04:00
|
|
|
#
|
2010-04-28 07:15:47 +04:00
|
|
|
# Please report all bugs and problems on the following page:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/str.php
|
2005-05-19 20:07:13 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
LIBNAMEROOT=ftlk_z
|
|
|
|
|
|
|
|
!include ../watcom.mif
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Object files...
|
|
|
|
#
|
|
|
|
|
2011-02-27 18:50:40 +03:00
|
|
|
LIBOBJS = adler32.obj compress.obj crc32.obj uncompr.obj deflate.obj &
|
|
|
|
trees.obj zutil.obj inflate.obj inftrees.obj inffast.obj &
|
|
|
|
gzclose.obj gzlib.obj gzread.obj gzwrite.obj infback.obj
|
2005-05-19 20:07:13 +04:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Make all targets...
|
|
|
|
#
|
|
|
|
|
|
|
|
all: $(LIBNAME)
|
|
|
|
|
|
|
|
$(LIBNAME): $(LIBOBJS)
|
|
|
|
$(LIB) $(LIBOPTS) $@ $<
|
|
|
|
|
|
|
|
#
|
|
|
|
# Clean all directories
|
|
|
|
#
|
|
|
|
clean : .SYMBOLIC
|
|
|
|
@echo Cleaning up.
|
|
|
|
CLEANEXTS = obj
|
|
|
|
@for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)\*.%a
|
|
|
|
-rm -f *.err
|
|
|
|
-rm -f $(LIBNAME)
|
|
|
|
|
|
|
|
#
|
|
|
|
# End of "$Id$".
|
|
|
|
#
|