build: have config-clean deal with old temp files
This is a temporary commit to have 'make config-clean' remove temporary files from the previous scripts/config version. The .gitignore file is updated to deal with the old files as well. Cc: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
This commit is contained in:
parent
db6c1214e0
commit
80b350f528
7
scripts/config/.gitignore
vendored
7
scripts/config/.gitignore
vendored
@ -12,3 +12,10 @@ mconf
|
|||||||
nconf
|
nconf
|
||||||
qconf
|
qconf
|
||||||
gconf
|
gconf
|
||||||
|
|
||||||
|
#
|
||||||
|
# temporary files from older version. Should be removed
|
||||||
|
#
|
||||||
|
zconf.???.c
|
||||||
|
zconf.hash.c
|
||||||
|
.tmp_qtcheck
|
||||||
|
@ -7,7 +7,10 @@ all: conf mconf
|
|||||||
clean:
|
clean:
|
||||||
rm -f *.o lxdialog/*.o *.moc $(clean-files) conf mconf qconf
|
rm -f *.o lxdialog/*.o *.moc $(clean-files) conf mconf qconf
|
||||||
|
|
||||||
clean-files :=
|
# This clean-files definition is here to ensure that temporary files from the
|
||||||
|
# previous version are removed by make config-clean.
|
||||||
|
# It should be removed or emptied when this Makefile get updated again.
|
||||||
|
clean-files := zconf.tab.c zconf.lex.c zconf.hash.c .tmp_qtcheck
|
||||||
|
|
||||||
# ===========================================================================
|
# ===========================================================================
|
||||||
# Variables needed by the upstream Makefile
|
# Variables needed by the upstream Makefile
|
||||||
|
Loading…
Reference in New Issue
Block a user