Compiling event_predicate
This commit is contained in:
parent
39ea42018f
commit
23a0fa002f
2
Makefile
2
Makefile
|
@ -12,7 +12,7 @@ CPPFLAGS += $(shell pkg-config --cflags $(DEPS))
|
||||||
LDLIBS += $(shell pkg-config --libs $(DEPS))
|
LDLIBS += $(shell pkg-config --libs $(DEPS))
|
||||||
INTERP ?=
|
INTERP ?=
|
||||||
MAIN = main
|
MAIN = main
|
||||||
OBJS = main.o events.o processing.o graph.o config.o event_code_names.o hash_table.o module_registry.o nodes/getchar.o nodes/print.o nodes/evdev.o nodes/tee.o
|
OBJS = main.o events.o processing.o graph.o config.o event_code_names.o hash_table.o module_registry.o event_predicate.o nodes/getchar.o nodes/print.o nodes/evdev.o nodes/tee.o
|
||||||
|
|
||||||
all: $(MAIN)
|
all: $(MAIN)
|
||||||
|
|
||||||
|
|
1
main.c
1
main.c
|
@ -87,6 +87,7 @@ main(int argc, char ** argv)
|
||||||
free(nodes);
|
free(nodes);
|
||||||
|
|
||||||
reset_config(&loaded_config);
|
reset_config(&loaded_config);
|
||||||
|
event_predicate_reset();
|
||||||
config_destroy(&config_tree);
|
config_destroy(&config_tree);
|
||||||
|
|
||||||
io_subscription_list_deinit(&state.wait_output);
|
io_subscription_list_deinit(&state.wait_output);
|
||||||
|
|
Loading…
Reference in New Issue