mirror of
https://github.com/funkemunky/codex-copr.git
synced 2026-05-31 06:11:55 +00:00
16 lines
244 B
Makefile
16 lines
244 B
Makefile
TOPDIR ?= $(CURDIR)/.rpmbuild
|
|
|
|
.PHONY: srpm srpm-x86_64 srpm-aarch64 clean
|
|
|
|
srpm:
|
|
TOPDIR="$(TOPDIR)" ./make-srpm.sh
|
|
|
|
srpm-x86_64:
|
|
TOPDIR="$(TOPDIR)" ./make-srpm.sh
|
|
|
|
srpm-aarch64:
|
|
TOPDIR="$(TOPDIR)" ./make-srpm.sh
|
|
|
|
clean:
|
|
rm -rf "$(TOPDIR)"
|