diff --git a/MAC/APL/PIC/rsuctl/Makefile.am b/MAC/APL/PIC/rsuctl/Makefile.am
new file mode 100644
index 0000000000000000000000000000000000000000..ef1c4d7b0f335578a76c28c5917a0baa101e793d
--- /dev/null
+++ b/MAC/APL/PIC/rsuctl/Makefile.am
@@ -0,0 +1,5 @@
+
+bin_SCRIPTS = \
+	rsuctl
+
+include $(top_srcdir)/Makefile.common
diff --git a/MAC/APL/PIC/rsuctl/bootstrap b/MAC/APL/PIC/rsuctl/bootstrap
new file mode 100755
index 0000000000000000000000000000000000000000..7f674c416802db5e7c438f093a99e63f63c784aa
--- /dev/null
+++ b/MAC/APL/PIC/rsuctl/bootstrap
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+../../../../autoconf_share/bootstrap ../../../../autoconf_share
diff --git a/MAC/APL/PIC/rsuctl/configure.in b/MAC/APL/PIC/rsuctl/configure.in
new file mode 100644
index 0000000000000000000000000000000000000000..2de2c5ebe76cfeffe3885f61678d676362870f03
--- /dev/null
+++ b/MAC/APL/PIC/rsuctl/configure.in
@@ -0,0 +1,42 @@
+dnl
+dnl Process this file with autoconf to produce a configure script.
+dnl
+AC_INIT(rsuctl)
+AM_CONFIG_HEADER(config.h)
+AM_INIT_AUTOMAKE(rsuctl, 1.0, no-define)
+
+dnl Initialize for LOFAR (may set compilers)
+lofar_INIT
+
+dnl Checks for programs.
+AC_PROG_INSTALL
+AC_PROG_LIBTOOL
+AC_PROG_LN_S
+
+dnl Checks for header files.
+dnl AC_HEADER_STDC
+dnl AC_CHECK_HEADERS(unistd.h sys/timepps.h sys/mman.h)
+
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl AC_C_CONST
+dnl AC_TYPE_SIZE_T
+
+dnl Checks for library functions.
+d nlAC_FUNC_VPRINTF
+
+dnl
+dnl Check for LOFAR specific things
+dnl
+lofar_GENERAL
+lofar_COMPILETOOLS
+dnl lofar_PVSS(1)
+
+dnl PPS_API needed by RSPDriver
+dnl AC_CHECK_HEADER([sys/timepps.h])
+
+dnl
+dnl Output Makefiles
+dnl
+AC_OUTPUT(
+	Makefile
+)