#=======================================================================
#  Makefile for example V draw program
#  Copyright (C) 1995  Bruce E. Wampler
#
#  This program is part of the V C++ GUI Framework example programs.
#
#  This program 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 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.  See the
#  GNU General Public License for more details.
#=======================================================================

CONFIG=../Config.mk
include $(CONFIG)

#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

ifeq ($(TOOLKIT),Motif)
PROG=\
	$(Bin)/vdrawm
else
PROG=\
	$(Bin)/vdraw
endif
ifeq ($(Arch),os2)
PROG	= 	$(Bin)/vdraw.exe
endif

EXOBJS=\
	$(oDir)/vdrwapp.o \
	$(oDir)/vdrwcnv.o \
	$(oDir)/vdrwcmdw.o \
	$(oDir)/vdrwdlg.o

ifeq ($(Arch),gnuwin32)
EXOBJS += $(oDir)/vdrawrc.o
endif

ifeq ($(Arch),os2)
EXOBJS += $(oDir)/vos2.res \
	  $(HOMEV)/srcos2/vos2.def 
endif

#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

.PHONY: default all objs clean cleanobj cleanall

default: all

all: $(PROG)

clean:
	-rm -f $(CLEANEXTS)
	-rm -f $(EXOBJS)

cleanall: clean
	-rm -f $(PROG)

objs:	$(EXOBJS)

#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

$(PROG):	$(EXOBJS)
	$(LD) -o $@ $(EXOBJS) $(LDFLAGS)

$(oDir)/vdrawrc.o:	vdraw.rc vdraw.ico vwindow.ico
	$(RES) vdraw.rc $(oDir)/vdrawrc.o

$(oDir)/vdrwcnv.o:	vdrwcnv.cpp v_defs.h vdrwcnv.h vdrwcmdw.h vdrwdlg.h \
	vprintdc.h vprinter.h
	$(CXX) -c $(CFLAGS) -o $@ $<                     

$(oDir)/vdrwdlg.o:	vdrwdlg.cpp v_defs.h vdrwdlg.h vdrwcmdw.h vdrwcnv.h
	$(CXX) -c $(CFLAGS) -o $@ $<                     

$(oDir)/vdrwcmdw.o:	vdrwcmdw.cpp v_defs.h vdrwcmdw.h vdrwcnv.h vdrwdlg.h
	$(CXX) -c $(CFLAGS) -o $@ $<                     

$(oDir)/vdrwapp.o:	vdrwapp.cpp v_defs.h vdrwapp.h vdrwcmdw.h vdrwcnv.h vdrwdlg.h
	$(CXX) -c $(CFLAGS) -o $@ $<

# For os/2 only - compiles resource file
$(oDir)/vos2.res:   $(HOMEV)/srcos2/vos2.rc $(HOMEV)/srcos2/vApp.ico $(HOMEV)/srcos2/collate.bmp
	$(RES) $< $@
