"Fossies" - the Fresh Open Source Software Archive

Member "schily-2021-09-18/fifo/Makefile" (19 Aug 2021, 1078 Bytes) of package /linux/privat/schily-2021-09-18.tar.bz2:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the latest Fossies "Diffs" side-by-side code changes reports for "Makefile": 2021-08-14_vs_2021-09-18 or 2021-07-29_vs_2021-09-18.

    1 #ident @(#)Makefile	1.4 21/08/19 
    2 ###########################################################################
    3 SRCROOT=	..
    4 RULESDIR=	RULES
    5 include		$(SRCROOT)/$(RULESDIR)/rules.top
    6 ###########################################################################
    7 
    8 INSDIR=		bin
    9 TARGET=		fifo
   10 CPPOPTS +=	-DUSE_LARGEFILES
   11 CPPOPTS +=	-DSCHILY_PRINT
   12 CPPOPTS +=	-DFIFO			# Include FIFO code
   13 CPPOPTS +=	-DFIFO_STANDALONE	# FIFO code is used as standalone
   14 CPPOPTS +=	-DUSE_MMAP		# Use mmap() for the FIFO
   15 CPPOPTS +=	-DUSE_NLS		# Include locale support
   16 CPPOPTS +=	-DINS_BASE=\"${INS_BASE}\"
   17 CPPOPTS +=	-DINS_RBASE=\"${INS_RBASE}\"
   18 CPPOPTS +=	-DTEXT_DOMAIN=\"SCHILY_utils\"
   19 
   20 CFILES=		fifo.c fifo_main.c
   21 HFILES=
   22 LIBS=		-lschily $(LIB_INTL)
   23 XMK_FILE=	Makefile.man
   24 
   25 fifo.c:
   26 	@echo "	==> MAKING SYMLINKS in ."; sh ./MKLINKS
   27 $(SRCROOT)/$(RULESDIR)/rules.cmd: fifo.c
   28 
   29 ###########################################################################
   30 include		$(SRCROOT)/$(RULESDIR)/rules.cmd
   31 ###########################################################################
   32 count:	$(CFILES) $(HFILES)
   33 	count $r1
   34