dockapps/wmgtemp/Makefile

18 lines
328 B
Makefile

INSTALL=install
MANINSTDIR=/usr/local/man/man1
MANPAGE=wmgtemp.1
all:
( cd src && $(MAKE) )
depend:
( cd src && $(MAKE) depend )
install:
( cd src && $(MAKE) install INSTDIR=$(INSTDIR) )
$(INSTALL) -d $(MANINSTDIR)
$(INSTALL) -m 755 -c $(MANPAGE) $(MANINSTDIR)/$(MANPAGE)
clean:
( cd src && $(MAKE) clean)