aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/httpd_basic_SUITE_data/Makefile.src
diff options
context:
space:
mode:
authorJohannes Weißl <[email protected]>2013-09-05 09:26:55 +0200
committerJohannes Weißl <[email protected]>2013-09-19 09:50:07 +0200
commit935874338ca9946997410a4276bf6c85847e10da (patch)
tree28574ce64f18b89180ca86081a06aad7e95f77de /lib/inets/test/httpd_basic_SUITE_data/Makefile.src
parent720721e41c90cc2105326cf0e84accae75a1786a (diff)
downloadotp-935874338ca9946997410a4276bf6c85847e10da.tar.gz
otp-935874338ca9946997410a4276bf6c85847e10da.tar.bz2
otp-935874338ca9946997410a4276bf6c85847e10da.zip
Add test for httpd config option 'script_timeout'
The option got ignored before 720721e.
Diffstat (limited to 'lib/inets/test/httpd_basic_SUITE_data/Makefile.src')
-rw-r--r--lib/inets/test/httpd_basic_SUITE_data/Makefile.src14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/inets/test/httpd_basic_SUITE_data/Makefile.src b/lib/inets/test/httpd_basic_SUITE_data/Makefile.src
new file mode 100644
index 0000000000..9da2ed583f
--- /dev/null
+++ b/lib/inets/test/httpd_basic_SUITE_data/Makefile.src
@@ -0,0 +1,14 @@
+CC = @CC@
+LD = @LD@
+CFLAGS = @CFLAGS@ -I@erl_include@ @DEFS@
+CROSSLDFLAGS = @CROSSLDFLAGS@
+
+PROGS = cgi_sleep@exe@
+
+all: $(PROGS)
+
+cgi_sleep@exe@: cgi_sleep@obj@
+ $(LD) $(CROSSLDFLAGS) -o cgi_sleep cgi_sleep@obj@ @LIBS@
+
+cgi_sleep@obj@: cgi_sleep.c
+ $(CC) -c -o cgi_sleep@obj@ $(CFLAGS) cgi_sleep.c