diff options
Diffstat (limited to '')
-rw-r--r-- | modules/bogus_log/bogus_log.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/bogus_log/bogus_log.mk b/modules/bogus_log/bogus_log.mk new file mode 100644 index 0000000..7431b19 --- /dev/null +++ b/modules/bogus_log/bogus_log.mk @@ -0,0 +1,8 @@ +bogus_log_CFLAGS := -fPIC +# We use a symbol that's not in libkres but the daemon. +# On darwin this isn't accepted by default. +bogus_log_LDFLAGS := -Wl,-undefined -Wl,dynamic_lookup +bogus_log_SOURCES := modules/bogus_log/bogus_log.c +bogus_log_DEPEND := $(libkres) +bogus_log_LIBS := $(contrib_TARGET) $(libkres_TARGET) $(libkres_LIBS) +$(call make_c_module,bogus_log) |