#
#  Copyright (C) 2000 heXoNet Support GmbH, D-66424 Homburg.
#  All Rights Reserved.
#
#  This 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 of the License, or
#  (at your option) any later version.
#
#  This software 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 software; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
#  USA.
#

USE_ZLIB = USE_ZLIB_WARREN

PROGRAMS = xrfbviewer x0rfbserver xplayfbs rfbcat xvncconnect

ENVIRONMENT = USE_ZLIB=$(USE_ZLIB)

all: $(PROGRAMS)


depend:
	-cd lib         &&  $(MAKE) -e $(ENVIRONMENT) $@
	-cd xrfbviewer  &&  $(MAKE) -e $(ENVIRONMENT) $@
	-cd x0rfbserver &&  $(MAKE) -e $(ENVIRONMENT) $@
	-cd rfbcat      &&  $(MAKE) -e $(ENVIRONMENT) $@


librfb.a:
	cd lib          &&  $(MAKE) -e $(ENVIRONMENT) $@

x0rfbserver: librfb.a
	cd x0rfbserver  &&  $(MAKE) -e $(ENVIRONMENT) $@

xrfbviewer: librfb.a
	cd xrfbviewer   &&  $(MAKE) -e $(ENVIRONMENT) $@

xplayfbs: librfb.a
	cd xrfbviewer   &&  $(MAKE) -e $(ENVIRONMENT) $@

rfbcat: librfb.a
	cd rfbcat       &&  $(MAKE) -e $(ENVIRONMENT) $@

xvncconnect:
	cd xvncconnect  &&  $(MAKE) -e $(ENVIRONMENT) $@

clean:
	cd lib          &&  $(MAKE) $@
	cd x0rfbserver  &&  $(MAKE) $@
	cd xrfbviewer   &&  $(MAKE) $@
	cd xvncconnect  &&  $(MAKE) $@
	cd rfbcat       &&  $(MAKE) $@

