summaryrefslogtreecommitdiffstats
path: root/testsuite/mghttpd01
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-10-09 22:52:54 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-10-10 09:08:23 +0200
commite599318e912d8836c59d8b5202e3e31a6b8dcae9 (patch)
tree1172b8b830a1c3236e45c834c2b80e01325ea144 /testsuite/mghttpd01
parentMove files to match FreeBSD layout (diff)
downloadrtems-libbsd-e599318e912d8836c59d8b5202e3e31a6b8dcae9.tar.bz2
Update files to match FreeBSD layout
Add compatibility with Newlib header files. Some FreeBSD header files are mapped by the translation script: o rtems/bsd/sys/_types.h o rtems/bsd/sys/errno.h o rtems/bsd/sys/lock.h o rtems/bsd/sys/param.h o rtems/bsd/sys/resource.h o rtems/bsd/sys/time.h o rtems/bsd/sys/timespec.h o rtems/bsd/sys/types.h o rtems/bsd/sys/unistd.h It is now possible to include <sys/socket.h> directly for example. Generate one Makefile which builds everything including tests.
Diffstat (limited to 'testsuite/mghttpd01')
-rw-r--r--testsuite/mghttpd01/.gitignore1
-rw-r--r--testsuite/mghttpd01/Makefile37
2 files changed, 0 insertions, 38 deletions
diff --git a/testsuite/mghttpd01/.gitignore b/testsuite/mghttpd01/.gitignore
deleted file mode 100644
index 27bb1279..00000000
--- a/testsuite/mghttpd01/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-init.c
diff --git a/testsuite/mghttpd01/Makefile b/testsuite/mghttpd01/Makefile
deleted file mode 100644
index 4444a517..00000000
--- a/testsuite/mghttpd01/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-#
-# $Id$
-#
-
-include ../../config.inc
-
-PGM=${ARCH}/mghttpd01.exe
-
-# optional managers required
-MANAGERS=all
-
-# XXX = mghttpd01.doc mghttpd01.scn
-# C source names
-C_FILES = init.c test-http-client.c
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
-
-AM_CPPFLAGS += -I $(INSTALL_BASE)/include
-AM_CPPFLAGS += -I ../init01
-AM_CPPFLAGS += -I ${r}/testsuites/support/include
-LINK_LIBS += $(INSTALL_BASE)/libmghttpd.a
-LINK_LIBS += $(INSTALL_BASE)/libbsdc.a
-LINK_LIBS += $(INSTALL_BASE)/libbsd.a
-
-include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
-include $(RTEMS_CUSTOM)
-include $(PROJECT_ROOT)/make/leaf.cfg
-
-OBJS= $(C_O_FILES)
-CLEAN_ADDITIONS += init.c
-
-all: init.c ${ARCH} $(PGM)
-
-init.c: ../init01/init.c
- cp ../init01/init.c .
-
-$(PGM): $(OBJS)
- -$(make-exe)