File:  [ELWIX - Embedded LightWeight unIX -] / libaitrpc / inc / Makefile.in
Revision 1.2.8.1: download - view: text, annotated - select for diffs - revision graph
Mon Dec 5 21:01:55 2022 UTC (19 months, 2 weeks ago) by misho
Branches: rpc9_5
Diff to: branchpoint 1.2: preferred, unified
ensure existence of includedir, libdir and prefix

    1: #
    2: # (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.2.8.1 2022/12/05 21:01:55 misho Exp $
    7: #
    8: 
    9: prefix = @prefix@
   10: exec_prefix = @exec_prefix@
   11: includedir = @includedir@
   12: 
   13: INSTALL = @INSTALL@
   14: 
   15: all:
   16: 
   17: alls:
   18: 
   19: depend:
   20: 
   21: depends:
   22: 
   23: clean:
   24: 	@rm -f *~
   25: 
   26: install: installc
   27: 
   28: installc:
   29: 	${INSTALL} -d ${prefix}
   30: 	${INSTALL} -d ${includedir}
   31: 	${INSTALL} aitrpc_pkt.h aitrpc_cli.h ${includedir}
   32: 
   33: installs:
   34: 	${INSTALL} aitrpc.h ${includedir}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>