Add in the mess from the original symbiosisware version.
[distorted-chroot] / mess / config / apt / Makefile
CommitLineData
fd0f20e1
MW
1### -*-makefile-*-
2
3all::
4clean::
5.PHONY: all clean
6
7.SECONDEXPANSION: #sorry
8
9DISTS = wheezy jessie stretch buster sid
10SOURCES = $(addprefix sources., $(DISTS))
11APTSRC_CONF_BASE = aptsrc.conf $(wildcard aptsrc.local.conf)
12all:: $(SOURCES)
13$(SOURCES): sources.%: mkaptsrc $(APTSRC_CONF_BASE) aptsrc.$$*
14 ./mkaptsrc $(APTSRC_CONF_BASE) aptsrc.$* >$@.new && mv $@.new $@
15clean::; rm -f $(SOURCES)