summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 5df9bef6a68ed665adde4ea9ba07505f0512021c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include Makefile.config

build: 
	make -C lst build

clean:
	rm -f *~
	make -C lst clean

install: build
	install -d $(bindir) $(dir)	
	make -C lst install
	install convert/merge2pcitable.pl $(bindir)

rpm: clean $(RPM)
	(echo "# !! DON'T MODIFY HERE, MODIFY IN THE CVS !!" ; \
         cat $(project).spec \
        ) > $(RPM)/SPECS/$(project).spec

	(cd .. ; tar cfj $(RPM)/SOURCES/$(project).tar.bz2 $(project))
	rpm -ba --clean --rmsource --rmspec $(RPM)/SPECS/$(project).spec