The R Project SVN R

Rev

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

Rev 15657 Rev 18847
Line 10... Line 10...
10
 
10
 
11
LIBS=-L.. -lR
11
LIBS=-L.. -lR
12
CFLAGS=-Wall
12
CFLAGS=-Wall
13
 
13
 
14
rtest-CFLAGS=-I.. -I../../include
14
rtest-CFLAGS=-I.. -I../../include
15
Rtest.exe: rtest.o R.dll
15
Rtest.exe: rtest.o R.dll Rblas.dll
16
	$(CC) -o $@ rtest.o R.dll
16
	$(CC) -o $@ rtest.o R.dll
17
 
17
 
18
rtest.c: ../../include/Rversion.h
18
rtest.c: ../../include/Rversion.h
19
 
19
 
20
R.dll: ../R.dll
20
R.dll: ../R.dll
21
	$(CP) -p $^ $@
21
	$(CP) -p $^ $@
22
 
22
 
-
 
23
Rblas.dll: ../../../bin/Rblas.dll
-
 
24
	$(CP) -p $^ $@
-
 
25
 
23
clean:
26
clean:
24
	$(RM) rtest.o Rtest.exe *~ R.dll
27
	$(RM) rtest.o Rtest.exe *~ R.dll
25
 
28
 
26
 
29