The R Project SVN R

Rev

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

Rev 42573 Rev 42589
Line 13... Line 13...
13
 
13
 
14
../../../modules/internet.dll: internet.o nanoftp.o nanohttp.o sockconn.o Rsock.o sock.o dllversion.o
14
../../../modules/internet.dll: internet.o nanoftp.o nanohttp.o sockconn.o Rsock.o sock.o dllversion.o
15
	$(MKDIR) -p ../../../modules
15
	$(MKDIR) -p ../../../modules
16
	@$(ECHO) "EXPORTS" > internet.def
16
	@$(ECHO) "EXPORTS" > internet.def
17
	@$(ECHO) " R_init_internet" >> internet.def
17
	@$(ECHO) " R_init_internet" >> internet.def
18
	$(DLL) -shared  -o $@ $^ internet.def -L../../../bin -lR -lgraphapp $(WSOCK)
18
	$(DLL) -shared  -o $@ $^ internet.def -L../../../$(IMPDIR) -lR -lgraphapp $(WSOCK)
19
	@$(RM) internet.def
19
	@$(RM) internet.def
20
 
20
 
21
../../../modules/internet2.dll: internet2.o sockconn.o Rsock.o sock.o dllversion.o
21
../../../modules/internet2.dll: internet2.o sockconn.o Rsock.o sock.o dllversion.o
22
	$(MKDIR) -p ../../../modules
22
	$(MKDIR) -p ../../../modules
23
	@$(ECHO) "EXPORTS" > internet.def
23
	@$(ECHO) "EXPORTS" > internet.def
24
	@$(ECHO) " R_init_internet2" >> internet.def
24
	@$(ECHO) " R_init_internet2" >> internet.def
25
	$(DLL) -shared  -o $@ $^ internet.def -L../../../bin -lR -lgraphapp -lwininet $(WSOCK) 
25
	$(DLL) -shared  -o $@ $^ internet.def -L../../../$(IMPDIR) -lR -lgraphapp -lwininet $(WSOCK) 
26
	@$(RM) internet.def
26
	@$(RM) internet.def
27
 
27
 
28
internet2.o: internet.c
28
internet2.o: internet.c
29
	@$(CC) $(CPPFLAGS) $(CFLAGS) -DUSE_WININET -c $< -o $@
29
	@$(CC) $(CPPFLAGS) $(CFLAGS) -DUSE_WININET -c $< -o $@
30
 
30