mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
rest of files to clean and gitignore
This commit is contained in:
parent
7f6e9617a7
commit
bc36742a00
2 changed files with 23 additions and 4 deletions
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
/debugdata
|
||||||
|
/pkglists
|
||||||
|
/results
|
||||||
|
/lorax_templates/*.tmpl
|
||||||
|
/xorriso/input.txt
|
||||||
|
/xorriso/*.sh
|
||||||
|
/original-pkgsizes.txt
|
||||||
|
/final-pkgsizes.txt
|
||||||
|
/lorax.conf
|
||||||
|
/*.iso
|
||||||
|
/*.log
|
||||||
16
Makefile
16
Makefile
|
|
@ -54,8 +54,16 @@ xorriso/%.sh: xorriso/%.sh.in
|
||||||
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(base_dir)/*.iso || true
|
|
||||||
rm -Rf $(base_dir)/$(image_name)-$(version) || true
|
rm -Rf $(base_dir)/$(image_name)-$(version) || true
|
||||||
rm $(base_dir)/lorax_templates/*.tmpl || true
|
rm -Rf $(base_dir)/debugdata || true
|
||||||
rm $(base_dir)/xorriso/input.txt || true
|
rm -Rf $(base_dir)/pkglists || true
|
||||||
rm $(base_dir)/xorriso/*.sh || true
|
rm -Rf $(base_dir)/results || true
|
||||||
|
rm -f $(base_dir)/lorax_templates/*.tmpl || true
|
||||||
|
rm -f $(base_dir)/xorriso/input.txt || true
|
||||||
|
rm -f $(base_dir)/xorriso/*.sh || true
|
||||||
|
rm -f $(base_dir)/{original,final}-pkgsizes.txt || true
|
||||||
|
rm -f $(base_dir)/lorax.conf || true
|
||||||
|
rm -f $(base_dir)/*.iso || true
|
||||||
|
rm -f $(base_dir)/*.log || true
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue