- Added new 'diagnostics' command to assist with bug reporting, testing. It answers questions such as "did you compile it yourself?", and more. - Specifically, it runs a UUID generation test to prove that the UUIDs are really unique.
23 lines
1.4 KiB
Makefile
23 lines
1.4 KiB
Makefile
bin_PROGRAMS = task
|
|
task_SHORTNAME = t
|
|
task_SOURCES = API.cpp API.h Att.cpp Att.h Cmd.cpp Cmd.h Color.cpp Color.h \
|
|
Config.cpp Config.h Context.cpp Context.h Date.cpp Date.h \
|
|
Directory.cpp Directory.h Duration.cpp Duration.h File.cpp \
|
|
File.h Filter.cpp Filter.h Grid.cpp Grid.h Hooks.cpp Hooks.h \
|
|
Keymap.cpp Keymap.h Lisp.cpp Lisp.h Location.cpp Location.h \
|
|
Nibbler.cpp Nibbler.h Path.cpp Path.h Permission.cpp \
|
|
Permission.h Record.cpp Record.h Rectangle.cpp Rectangle.h \
|
|
Sensor.cpp Sensor.h Sequence.cpp Sequence.h StringTable.cpp \
|
|
StringTable.h Subst.cpp Subst.h TDB.cpp TDB.h Table.cpp Table.h \
|
|
Task.cpp Task.h Taskmod.cpp Taskmod.h Thread.cpp Thread.h \
|
|
Timer.cpp Timer.h Transport.cpp Transport.h TransportSSH.cpp \
|
|
TransportSSH.h TransportRSYNC.cpp TransportRSYNC.h \
|
|
TransportCurl.cpp TransportCurl.h Tree.cpp Tree.h command.cpp \
|
|
custom.cpp dependency.cpp diag.cpp edit.cpp export.cpp i18n.h \
|
|
import.cpp interactive.cpp main.cpp main.h recur.cpp report.cpp \
|
|
rules.cpp rx.cpp rx.h text.cpp text.h util.cpp util.h Uri.cpp \
|
|
Uri.h
|
|
task_CPPFLAGS=$(LUA_CFLAGS)
|
|
task_LDFLAGS=$(LUA_LFLAGS)
|
|
|