aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2015-09-24 20:01:09 +0200
committerIngela Anderton Andin <[email protected]>2015-09-24 20:01:09 +0200
commit14cb29199246feabf3851f3e0d3f8b69da0d990d (patch)
tree86479030b29e52e9ebf8cc82c0385a3f80af16a6 /lib/inets/test
parent71501e4307e78805bda531c78352913d12e1dfc9 (diff)
downloadotp-14cb29199246feabf3851f3e0d3f8b69da0d990d.tar.gz
otp-14cb29199246feabf3851f3e0d3f8b69da0d990d.tar.bz2
otp-14cb29199246feabf3851f3e0d3f8b69da0d990d.zip
inets: Adjust makefile to new windows compiler
Diffstat (limited to 'lib/inets/test')
-rw-r--r--lib/inets/test/httpd_SUITE_data/Makefile.src5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/inets/test/httpd_SUITE_data/Makefile.src b/lib/inets/test/httpd_SUITE_data/Makefile.src
index b0fdb43d8d..cea40dd8cb 100644
--- a/lib/inets/test/httpd_SUITE_data/Makefile.src
+++ b/lib/inets/test/httpd_SUITE_data/Makefile.src
@@ -10,5 +10,10 @@ all: $(PROGS)
cgi_echo@exe@: cgi_echo@obj@
$(LD) $(CROSSLDFLAGS) -o cgi_echo cgi_echo@obj@ @LIBS@
+@IFEQ@ (@CC@, cl -nologo)
+cgi_echo@obj@: cgi_echo.c
+ $(CC) /c /Focgi_echo@obj@ $(CFLAGS) cgi_echo.c
+@ELSE@
cgi_echo@obj@: cgi_echo.c
$(CC) -c -o cgi_echo@obj@ $(CFLAGS) cgi_echo.c
+@ENDIF@