You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
526 B
25 lines
526 B
20 years ago
|
|
||
|
THEMES += BlueSteel
|
||
|
THEMES += ShinyMetal
|
||
|
THEMES += BrushedMetal-Tigert
|
||
|
THEMES += Ganymede
|
||
|
|
||
|
.PHONY: $(THEMES)
|
||
|
|
||
|
all: check
|
||
|
|
||
|
# Make distcheck
|
||
|
THEMES-CHECK = $(addprefix check-, $(THEMES))
|
||
|
.PHONY: $(THEMES-CHECK)
|
||
|
check: $(THEMES-CHECK)
|
||
|
$(THEMES-CHECK): check-%:
|
||
|
cd $*; ./autogen.sh && make distcheck
|
||
|
|
||
|
# Make RPM's
|
||
|
THEMES-RPM = $(addprefix rpm-, $(THEMES))
|
||
|
.PHONY: $(THEMES-RPM)
|
||
|
rpms: $(THEMES-RPM)
|
||
|
$(THEMES-RPM): rpm-%:
|
||
|
# cd $*; ./autogen.sh && make dist && rpmbuild -bb etheme-$*.spec
|
||
|
cd $*; rpmbuild -bb etheme-$*.spec
|