From 4c49ec1cbcbbcc97b427d118b04deeacce628739 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 8 Feb 2021 16:08:10 +0100 Subject: single spec --- Makefile | 35 ++--------------------------------- 1 file changed, 2 insertions(+), 33 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5613163..1e65467 100644 --- a/Makefile +++ b/Makefile @@ -1,35 +1,4 @@ SRCDIR := $(shell pwd) -NAME := oracle-instantclient-19 - -RPMDEFINES := --define "_sourcedir $(SRCDIR)" \ - --define "_specdir $(SRCDIR)" \ - --define "_srcrpmdir $(SRCDIR)" \ - --define "_rpmdir $(SRCDIR)" - -SRCDEFINES := --define "dist .remi" \ - --define "_source_filedigest_algorithm 1" \ - --define "_binary_filedigest_algorithm 1" - - -arch: - mv *.src.rpm /data/rpms/SRPMS.remi/ && echo done || echo Nothing to do - -clean: - @echo Clean $(NAME) in $(SRCDIR) - @rm -rfv *~ noarch x86_64 *.src.rpm - -srpm64: - rpmbuild $(RPMDEFINES) $(SRCDEFINES) -bs $(NAME)-x86_64.spec - -build64: - rpmbuild $(RPMDEFINES) -bb $(NAME)-x86_64.spec - -srpm32: - rpmbuild $(RPMDEFINES) $(SRCDEFINES) -bs $(NAME)-i386.spec - -build32: - rpmbuild $(RPMDEFINES) -bb $(NAME)-i386.spec - -bp: - rpmbuild $(RPMDEFINES) -bp $(NAME).spec +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile -- cgit