diff options
author | midipix <writeonce@midipix.org> | 2018-06-03 20:36:44 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-05 08:21:55 -0400 |
commit | 390f7f5d377dadbd878de91ba7563f339830f76d (patch) | |
tree | 5891d9de92b4aa14aa7518d0fdfb763584c645a6 | |
parent | 763920f123823cfc8012c438b2f458f6bd79ef18 (diff) | |
download | pemagine-390f7f5d377dadbd878de91ba7563f339830f76d.tar.bz2 pemagine-390f7f5d377dadbd878de91ba7563f339830f76d.tar.xz |
build system: configure: added initial dependency tracking support.
-rw-r--r-- | config.usage | 3 | ||||
-rwxr-xr-x | configure | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/config.usage b/config.usage index 6d2efc4..b7c9fce 100644 --- a/config.usage +++ b/config.usage @@ -61,6 +61,9 @@ supported switches: --disable-app --disable-frontend + --enable-dependency-tracking + --disable-dependency-tracking + supported variables: -------------------- @@ -747,6 +747,12 @@ for arg ; do mb_source_dir=${arg#*=} ;; + # compatibility + --enable-dependency-tracking) + ;; + --disable-dependency-tracking) + ;; + *) error_msg ${arg#}: "unsupported config argument." exit 2 |