Index: trunk/tests/rnd_printf/glue.c =================================================================== --- trunk/tests/rnd_printf/glue.c (revision 32772) +++ trunk/tests/rnd_printf/glue.c (nonexistent) @@ -1,42 +0,0 @@ -#include -#include -#include - -/*** hidlib glue ***/ - -TODO - -const char *rnd_hidlib_default_embedded_menu = ""; -const char *rnd_menu_file_paths[] = { "./", NULL }; -const char *rnd_menu_name_fmt = "menu.lht"; - -const char *rnd_conf_userdir_path = "./"; -const char *rnd_conf_user_path = "./conf.lht"; - -/* hack for running from ./ without internal version of the conf */ -const char *rnd_conf_sysdir_path = "./"; -const char *rnd_conf_sys_path = "./conf.lht"; - -const char *rnd_app_package = "librnd_test"; -const char *rnd_app_version = "0.0.0"; -const char *rnd_app_url = "n/a"; - - -typedef struct design_s { - rnd_hidlib_t hidlib; /* shall be the first */ -} design_t; - -design_t CTX; - -const pup_buildin_t local_buildins[] = { - {NULL, NULL, NULL, NULL, 0, NULL} -}; - -static const char *action_args[] = { - NULL, NULL, NULL, NULL, NULL /* terminator */ -}; - -void conf_core_init() -{ -} - Index: trunk/tests/rnd_printf/Makefile =================================================================== --- trunk/tests/rnd_printf/Makefile (revision 32772) +++ trunk/tests/rnd_printf/Makefile (revision 32773) @@ -11,7 +11,7 @@ CFLAGS = $(PCB_RND_C89FLAGS) -I$(TRUNK) -I$(SRC) -I$(TRUNK)/src_3rd -I$(TRUNK)/src_3rd/liblihata LDLIBS = -lm -LIBPCB_BASE=$(SRC)/librnd-hid.a $(SRC)/librnd-3rd.a glue.o +LIBPCB_BASE=$(SRC)/librnd-hid.a $(SRC)/librnd-3rd.a include $(LIBRND)/core/librnd.mak LDFLAGS = $(LDFLAGS_LIBRND) @@ -33,9 +33,6 @@ prclimq.o: prclimq.c $(CC) -c $(CFLAGS) prclimq.c -o prclimq.o -glue.o: glue.c - $(CC) -c $(CFLAGS) glue.c -o glue.o - tester: tester.o $(LIBRND)/core/rnd_printf.o $(LIBPCB_BASE) $(CC) -o tester tester.o $(LIBRND)/core/rnd_printf.o $(LIBPCB_BASE) $(LDFLAGS) $(LDLIBS)