Skip to content

Commit

Permalink
Merge pull request #96 from dnagl/95-fix-makefile
Browse files Browse the repository at this point in the history
Fix #95
  • Loading branch information
dmnks committed Aug 23, 2019
2 parents 594b49a + 9282d18 commit 098cf29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -19,7 +19,7 @@ all: subdirs

clean:
rm -f *.pyc *.pyo *~ *.bak
rm -f $(BUILDDIR)/{SOURCES,SRPMS,RPMS}/*
rm -f $(BUILDDIR)/SOURCES/* $(BUILDDIR)/SRPMS/* $(BUILDDIR)/RPMS/*
mock -r $(MOCK_CONF) --clean
for d in $(SUBDIRS); do make -C $$d clean ; done
cd test; rm -f *.pyc *.pyo *~ *.bak
Expand Down Expand Up @@ -131,7 +131,7 @@ _archive:
### RPM packaging ###

$(BUILDDIR):
@mkdir -p $@/{SOURCES,SRPMS,RPMS}
@mkdir -p $@/SOURCES $@/SRPMS $@/RPMS

srpm: archive $(BUILDDIR)
@cp $(PKGNAME)-$(VERSION).tar.gz $(BUILDDIR)/SOURCES/
Expand Down

0 comments on commit 098cf29

Please sign in to comment.