| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #
- # $Id$
- # Copyright (c) 1998 by the Free Pascal Development Team
- #
- # Makefile for Free Pascal Installer
- #
- # See the file COPYING.FPC, included in this distribution,
- # for details about the copyright.
- #
- # 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.
- #
- #####################################################################
- # Defaults
- #####################################################################
- NEEDUNITDIR=../api ../fv
- #####################################################################
- # Real targets
- #####################################################################
- UNITOBJECTS=ziptypes unzip
- EXEOBJECTS=install
- #####################################################################
- # Include default makefile
- #####################################################################
- ifndef FPCMAKE
- ifdef FPCDIR
- FPCMAKE=$(FPCDIR)/makefile.fpc
- else
- FPCMAKE=makefile.fpc
- endif
- endif
- override FPCMAKE:=$(strip $(wildcard $(FPCMAKE)))
- ifeq ($(FPCMAKE),)
- nofpcmake:
- @echo
- @echo makefile.fpc not found!
- @echo Check the FPCMAKE and FPCDIR environment variables.
- @echo
- @exit
- else
- include $(FPCMAKE)
- endif
- #####################################################################
- # Dependencies
- #####################################################################
- #
- # $Log$
- # Revision 1.1 1999-02-19 16:45:26 peter
- # * moved to fpinst/ directory
- # + makefile
- #
- #
|