1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/makefile.mk
CFLAGS += -Wno-deprecated
PREFIX := debian/estic/usr
clean::
-(cd estic; $(MAKE) zap; rm -f estic)
-(cd spunk; $(MAKE) zap)
-(cd areacode; $(MAKE) clean)
install/estic::
cp estic/estic debian/xestic $(PREFIX)/bin/
chmod 755 $(PREFIX)/bin/estic
chmod 755 $(PREFIX)/bin/xestic
cp estic/estic.res debian/estic.xpm $(PREFIX)/share/estic/
cp debian/estic.ini $(PREFIX)/../etc/
|