diff options
Diffstat (limited to 'tools/module.mk')
-rw-r--r-- | tools/module.mk | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/module.mk b/tools/module.mk index eb8b47aec0..a82ae70cdc 100644 --- a/tools/module.mk +++ b/tools/module.mk @@ -8,7 +8,10 @@ MODULE_DIRS += \ # Tools directory ####################################################################### -TOOLS := tools/convbdf$(EXEEXT) tools/md5table$(EXEEXT) +TOOLS := \ + tools/convbdf$(EXEEXT) \ + tools/md5table$(EXEEXT) \ + tools/create_lure/create_lure$(EXEEXT) # Make sure the 'all' / 'clean' targets build/clean the tools, too @@ -33,6 +36,10 @@ tools/md5table$(EXEEXT): $(srcdir)/tools/md5table.c $(MKDIR) tools/$(DEPDIR) $(CC) $(CFLAGS) -Wall -o $@ $< +tools/create_lure/create_lure$(EXEEXT): tools/create_lure/create_lure_dat.o tools/create_lure/process_actions.o + $(MKDIR) tools/create_lure/$(DEPDIR) + $(CXX) $(LDFLAGS) $+ -o $@ + # # Rules to explicitly rebuild the credits / MD5 tables. # The rules for the files in the "web" resp. "docs" modules |