include ../MkRules
R_HOME = ../../..

ifdef DEBUG
  OPTFLAGS=$(G_FLAG) -O3 -Wall
  LINKFLAGS=
  DLLFLAGS=
else
  OPTFLAGS=-O3 -Wall -pedantic
  LINKFLAGS=-s
  DLLFLAGS=-s
endif
CPPFLAGS=-I../../include
CFLAGS=$(OPTFLAGS)

## Increase stack size to 10Mb
LARGE_STACK=-Wl,--stack=0xA00000
## allow 32-bit builds to address over 2Gb
ifeq ($(strip $(WIN)),32)
LARGE_ADDR=-Wl,--large-address-aware
endif

.PHONY : all makeMakedeps

all: makeMakedeps \
     $(R_HOME)/bin/Rgui.exe $(R_HOME)/bin/Rterm.exe \
     $(R_HOME)/bin/Rcmd.exe  $(R_HOME)/bin/RSetReg.exe  \
     $(R_HOME)/bin/Rproxy.dll $(R_HOME)/bin/R.exe \
     $(R_HOME)/bin/md5check.exe $(R_HOME)/bin/Rscript.exe

$(R_HOME)/bin/Rgui.exe: Rgui.exe
	$(MKDIR) -p $(R_HOME)/bin
	$(CP) $^ $@

$(R_HOME)/bin/Rterm.exe: Rterm.exe
	$(MKDIR) -p $(R_HOME)/bin
	$(CP) $^ $@	

$(R_HOME)/bin/Rcmd.exe: Rcmd.exe
	$(MKDIR) -p $(R_HOME)/bin
	$(CP) $^ $@

$(R_HOME)/bin/RSetReg.exe: RSetReg.exe
	$(MKDIR) -p $(R_HOME)/bin
	$(CP) $^ $@

$(R_HOME)/bin/R.exe: R.exe
	$(MKDIR) -p $(R_HOME)/bin
	$(CP) $^ $@	

$(R_HOME)/bin/md5check.exe: md5check.exe
	$(MKDIR) -p $(R_HOME)/bin
	$(CP) $^ $@	

$(R_HOME)/bin/Rscript.exe: Rscript.exe
	$(MKDIR) -p $(R_HOME)/bin
	$(CP) $^ $@	

#graphappmain-CPPFLAGS=-I../../extra
rgui-CPPFLAGS=-DWin32
rterm-CPPFLAGS=-DWin32

## -luser32 -lkernel32 -ladvapi32 -lshell32 are now standard
Rgui-LIBS=-L../../../$(IMPDIR) -lR -lgraphapp
Rscript-LIBS=-L../../../$(IMPDIR) -lR -lgraphapp
Rterm-LIBS=-L../../../$(IMPDIR) -lR -lgraphapp

Rgui-LINKFLAGS=-mwindows $(LARGE_ADDR) $(LARGE_STACK)
Rterm-LINKFLAGS=$(LARGE_ADDR) $(LARGE_STACK)
Rscript-LINKFLAGS=$(LARGE_ADDR) $(LARGE_STACK)

Rgui.exe: graphappmain.o  rgui.o rgico.o

Rterm.exe: graphappmain.o rterm.o rtico.o

Rcmd.exe: rcmd.o ../rhome.o ../shext.o rcico.o rcmdfn.o

R.exe: R.o ../rhome.o ../shext.o rcico.o rcmdfn.o

RSetReg.exe: RSetReg.o ../rhome.o rcico.o

md5check-CPPFLAGS=-I../../../include -I../../library/tools/src
md5check.exe : md5check.o md5ico.o ../../library/tools/src/md5.o

Rscript.o: ../../unix/Rscript.c
	$(CC) $(CFLAGS) -I. -I../../include -DHAVE_CONFIG_H -c $< -o $@

Rscript.exe: Rscript.o rcico.o

Rpwd:
	$(MAKE) -C ../../include -f Makefile.win version
	$(MAKE) Rpwd.exe

Rpwd.exe: rpwd.o rcico.o

rcmd.o R.o rgui.o rterm.o RSetReg.o rproxy_impl.o rgico.o rtico.o rcico.o: ../../include/Rversion.h
rgico.o: Rgui.exe.manifest
rtico.o: Rterm.exe.manifest
rcico.o: Rcmd.exe.manifest

clean:
	$(RM) *.o *.obj *.exe *~ *.exp *.dll *.lib *.a *.d Makedeps

bdx_util-CFLAGS=-D_IN_RPROXY_
bdx_com-CFLAGS=-D_IN_RPROXY_
bdx_SEXP-CFLAGS=-D_IN_RPROXY_
## for graphapp.h
rproxy_impl-CFLAGS=-I../../../include
Rproxy-DLLFLAGS=-mwindows
Rproxy-DLLLIBS=-L../../../$(IMPDIR) -lR -lgraphapp -lole32 -luuid -loleaut32
## this one needs Rproxy.dll as the LIBRARY line
Rproxy.dll: Rproxy.def rproxy.o rproxy_dev.o rproxy_impl.o com_util.o \
	bdx_util.o bdx_SEXP.o bdx_com.o rtico.o
	$(DLL) -shared $(DLLFLAGS) $($*-DLLFLAGS) -o $@ $^ $($*-DLLLIBS) $(DLLLIBS)


$(R_HOME)/bin/Rproxy.dll: Rproxy.dll
	@$(MKDIR) -p $(R_HOME)/bin
	$(CP) Rproxy.dll $@	

CSOURCES=$(filter-out R.c rcmd.c rpwd.c rtest.c, $(wildcard *.c))
DEPS=$(CSOURCES:.c=.d)

makeMakedeps: $(DEPS)
	@$(RM) Makedeps
ifneq ($(strip $(DEPS)),)
	@cat $(DEPS) >> Makedeps
endif

-include Makedeps