diff options
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | bootsplash.spec | 3 | ||||
-rw-r--r-- | fb/Makefile | 2 |
3 files changed, 9 insertions, 1 deletions
@@ -46,3 +46,8 @@ rpm: changelog cvstag dis ../$(NAME)-$(VERSION).tar.bz2 $(RPM) cp -f ../$(NAME)-$(VERSION).tar.bz2 $(RPM)/SOURCES -rpm -ba --clean $(NAME).spec rm -f ../$(NAME)-$(VERSION).tar.bz2 + +localrpm: dis ../$(NAME)-$(VERSION).tar.bz2 $(RPM) + cp -f ../$(NAME)-$(VERSION).tar.bz2 $(RPM)/SOURCES + -rpm -ba --clean $(NAME).spec + rm -f ../$(NAME)-$(VERSION).tar.bz2 diff --git a/bootsplash.spec b/bootsplash.spec index b08d4a0..e5e89a5 100644 --- a/bootsplash.spec +++ b/bootsplash.spec @@ -29,7 +29,10 @@ generated by mkinitrd. %build make check + +cd fb make +cd .. %install rm -rf $RPM_BUILD_ROOT diff --git a/fb/Makefile b/fb/Makefile index ffcc242..52958ed 100644 --- a/fb/Makefile +++ b/fb/Makefile @@ -9,7 +9,7 @@ CFLAGS=-g -O2 -Wall \ PROGS=progress fbresolution -all build: $(PROGS) +all: $(PROGS) check: /bin/true |