The R Project SVN R

Rev

Rev 67610 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#-*- Makefile -*-

include ../../gnuwin32/MkRules

all: makeMakedeps install


install: Riconv.dll
    @cp Riconv.dll ../../../$(BINDIR)

CPPFLAGS = -I../../include

CSOURCES =  win_iconv.c
OBJS = $(CSOURCES:.c=.o)
DLLFLAGS = -s

Riconv.dll: $(OBJS)

clean:
    $(RM) *.o *~ *.d Makedeps
distclean: clean
    @$(RM) Riconv.dll

# Dependencies
DEPS = $(CSOURCES:.c=.d)

makeMakedeps: $(DEPS)
    @$(RM) Makedeps
    @cat $(DEPS) >> Makedeps

-include Makedeps