summaryrefslogtreecommitdiffstats
path: root/Makefile.include
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.include')
-rw-r--r--Makefile.include17
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile.include b/Makefile.include
index cd8ae7d73..cc76dd846 100644
--- a/Makefile.include
+++ b/Makefile.include
@@ -122,20 +122,3 @@ int main(int argc, char **argv)
}
endef
export LIBJAYLINK_TEST
-
-define NI845X_TEST
-#include <ni845x.h>
-
-int main(int argc, char **argv)
-{
- (void) argc;
- (void) argv;
- char I2C_Device[256];
- NiHandle Dev_Handle;
- uInt32 NumberFound = 0;
- ni845xFindDevice(I2C_Device, &Dev_Handle, &NumberFound);
- ni845xCloseFindDeviceHandle(Dev_Handle);
- return 0;
-}
-endef
-export NI845X_TEST