The R Project SVN R

Rev

Rev 38642 | Rev 38855 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 38642 Rev 38794
Line 6... Line 6...
6
else
6
else
7
  DEBUGFLAG=
7
  DEBUGFLAG=
8
  LINKFLAGS=-s
8
  LINKFLAGS=-s
9
endif
9
endif
10
 
10
 
11
LIBS=-L../../../lib $(LIBUNICOWS) -lR
-
 
12
CFLAGS=-Wall
11
CFLAGS=-Wall
13
 
12
 
14
rtest-CFLAGS=-I.. -I../../include $(DEBUGFLAG)
13
rtest-CFLAGS=-I.. -I../../include $(DEBUGFLAG)
15
Rtest.exe: rtest.o R.dll Rblas.dll
14
Rtest.exe: rtest.o R.dll Rblas.dll
16
	$(CC) $(LINKFLAGS) -o $@ rtest.o R.dll
15
	$(CC) $(LINKFLAGS) -o $@ rtest.o R.dll
Line 22... Line 21...
22
 
21
 
23
Rblas.dll: ../../../bin/Rblas.dll
22
Rblas.dll: ../../../bin/Rblas.dll
24
	$(CP) -p $^ $@
23
	$(CP) -p $^ $@
25
 
24
 
26
clean:
25
clean:
27
	$(RM) rtest.o Rtest.exe *~ R.dll
26
	$(RM) rtest.o Rtest.exe *~ R.dll Rblas.dll
28
 
27
 
29
 
28