The R Project SVN R

Rev

Rev 53418 | Rev 55078 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#-*- Makefile -*-

ifeq "$(WIN)" "64"
BINPREF = $(BINPREF64)
SYMPAT = $(SYMPAT64)
R_ARCH = /x64
DEFS_W64 = -DW64
arch_DEFS = -DR_ARCH='"x64"'
else
R_ARCH = /i386
arch_DEFS = -DR_ARCH='"i386"'
SYMPAT = 's/^.* [BCDRT] _/ /p'
endif

## -std=c99 would force __STRICT_ANSI__ disabling strdup etc, and also alloca
C99FLAG=-std=gnu99

## earlier Rtools needed -sjlj; the alternative is -dw2, which failed building R.
GCC4_SUFF=


BINDIR=bin$(R_ARCH)

ifdef USE_IMPLIBS
IMPDIR=lib
else
IMPDIR=$(BINDIR)
endif

AR=$(BINPREF)ar
AS=$(BINPREF)as
# AWK=gawk
CAT=cat
CC=$(BINPREF)gcc$(GCC4_SUFF) $(C99FLAG) $(M_ARCH)
CP=cp
# as set by make
CPP=$(CC) -E
DLL=$(CC)
DLLTOOL=$(BINPREF)dlltool
## some versions have trouble with paths, so we always need this
## even for native builds
DLLTOOLFLAGS=--as $(AS) -k
ECHO=echo
F77=$(BINPREF)gfortran$(GCC4_SUFF) $(M_ARCH)
FLIBS=-lgfortran
LINKER=$(MAIN_LD)
MAIN_LD=$(CC)
MKDIR=mkdir
NM=$(BINPREF)nm
RANLIB=$(BINPREF)ranlib
RESCOMP=$(BINPREF)windres

# as set by make
RM=rm -f
SED=sed
SORT=sort

.SUFFIXES:
.SUFFIXES: .c .cc .cpp .C .f .o .a .def .exp .dll .exe .d .f90 .f95 .m .S

.c.d:
    @echo "making $@ from $<"
    @$(CC) -MM $(CPPFLAGS) $($*-CPPFLAGS) $(DEFINES) $< -o $@

.c.o:
    $(CC) $(CPPFLAGS) $($*-CPPFLAGS) $(CFLAGS) $($*-CFLAGS) $(DEFINES) -c $< -o $@

.f.o:
    $(F77) $(FFLAGS) $($*-FFLAGS) -c $< -o $@

%.exe:
    $(LINKER) $(LINKFLAGS) $($*-LINKFLAGS) -o $@ $^ $($*-LIBS) $(LIBS)

%.dll:
    @$(ECHO) EXPORTS > $*.def
    @$(NM) $^ | $(SED) -n $(SYMPAT) >> $*.def
    $(DLL) -shared $(DLLFLAGS) $($*-DLLFLAGS) -o $@ $*.def $^ $($*-DLLLIBS) $(DLLLIBS)
    @$(RM) $*.def

lib%.dll.a: %.def
    $(DLLTOOL) $(DLLTOOLFLAGS) $($*-DLLTOOLFLAGS) --dllname $*.dll --input-def $*.def --output-lib $@

%.a:
#   @$(ECHO) -------- Building $@ from $^ --------
    @$(RM) $@
    $(AR) crs $@ $^

%.o: %.rc
    $(RESCOMP) $(RESFLAGS) $($*-RESFLAGS) -i $< -o $@