Commit a2d5f0a4 authored by Alejandro Mery's avatar Alejandro Mery
Browse files

fexc: use script.o

parent 1fc1addd
......@@ -17,6 +17,8 @@ $(TOOLS): Makefile common.h
fex2bin bin2fex: fexc
ln -s $< $@
fexc: script.h script.c
%: %.c %.h
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
......
......@@ -25,14 +25,6 @@
/*
*/
static struct script *script_new(void)
{
return NULL;
}
static void script_delete(struct script *UNUSED(script))
{
}
static int script_parse(int UNUSED(mode), const char *UNUSED(filename),
struct script *UNUSED(script))
{
......
......@@ -19,4 +19,8 @@
#include "common.h"
#include <stdint.h>
#include "script.h"
#endif
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment