diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-12 12:29:37 -0700 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-13 18:12:44 -0700 |
commit | 3e0fef4e8df91109e97da8201babe47a58771340 (patch) | |
tree | 95450abe25c8cc8e2a0a6eee6b086d1f05c2e0a9 /src/Makefile.am | |
parent | Move module structures out of headers (diff) | |
download | redshift-ng-3e0fef4e8df91109e97da8201babe47a58771340.tar.gz redshift-ng-3e0fef4e8df91109e97da8201babe47a58771340.tar.bz2 redshift-ng-3e0fef4e8df91109e97da8201babe47a58771340.tar.xz |
Move options handling to separate file
Create options.c which contains functions for initializing and
parsing options from the command line and the configuration file.
Program options that were previously local variables in main() are
moved to the options_t struct.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 99c8a2e..8aa96ea 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -14,6 +14,7 @@ redshift_SOURCES = \ gamma-dummy.c gamma-dummy.h \ hooks.c hooks.h \ location-manual.c location-manual.h \ + options.c options.h \ pipeutils.c pipeutils.h \ redshift.c redshift.h \ signals.c signals.h \ |