chiark / gitweb /
Actually build hostside; remove some obsolete files
authorian <ian>
Sat, 14 Mar 2009 01:11:07 +0000 (01:11 +0000)
committerian <ian>
Sat, 14 Mar 2009 01:11:07 +0000 (01:11 +0000)
hostside/Makefile
hostside/hostside.c [deleted file]
hostside/hostside.h [deleted file]

index 257b1dd7aafe17b40b351899826db03aef1fcbe2..e077d939b092ec36b4fb0eb3c68d1b8833a403e3 100644 (file)
@@ -30,6 +30,7 @@ client:               $(CLIENT_TARGETS)
 #---------- executables ----------
 
 hostside-old:  serialio.o nmra.o main.o encode.o utils.o
+               $(LINK)
 
 topology-dump: topology-dump.o utils.o $(LAYOUT_DATA).o
 
diff --git a/hostside/hostside.c b/hostside/hostside.c
deleted file mode 100644 (file)
index 813cab3..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-/**/
-
-#include <assert.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <string.h>
-#include <stdarg.h>
-
-#include "../layout/dlist.h"
-#include "hostside.h"
-#include "auproto-pic.h"
-
-FILE *dump_stream= 0;
diff --git a/hostside/hostside.h b/hostside/hostside.h
deleted file mode 100644 (file)
index d350c07..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * OBSOLETE FILE
- * declarations for hostside controller daemon
- */
-
-#ifndef HOSTSIDE_H
-#define HOSTSIDE_H
-
-#include "common.h"
-
-/*---------- from protocol.c ----------*/
-
-typedef struct OrdinaryPicMessage OrdinaryPicMessage;
-struct OrdinaryPicMessage {
-  const char *title;
-  unsigned opcode;
-  int operand_bits; /* 0: no operand.  >=7, insn is a 2-byte message */
-};
-     
-#endif