diff options
Diffstat (limited to 'vendor/raspbian/makefile')
-rw-r--r-- | vendor/raspbian/makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/raspbian/makefile b/vendor/raspbian/makefile new file mode 100644 index 000000000..c4464900f --- /dev/null +++ b/vendor/raspbian/makefile @@ -0,0 +1,16 @@ +# -*- make -*- +BASE=../.. +SUBDIR=vendor/raspbian + +# Bring in the default rules +include ../../buildlib/defaults.mak + +doc binary manpages: sources.list + +sources.list: sources.list.in ../../doc/apt-verbatim.ent + sed -e 's#&stable-codename;#$(shell ../getinfo debian-stable-codename)#g' $< > $@ + +clean: clean/sources.list + +clean/sources.list: + rm -f sources.list |