"Fossies" - the Fresh Open Source Software Archive

Member "schily-2021-09-18/tartest/Makefile" (20 Aug 2021, 950 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 @(#)tartest.mk	1.9 21/08/20 
    2 ###########################################################################
    3 # Sample makefile for general application programs
    4 ###########################################################################
    5 SRCROOT=	..
    6 RULESDIR=	RULES
    7 include		$(SRCROOT)/$(RULESDIR)/rules.top
    8 ###########################################################################
    9 
   10 INSDIR=		bin
   11 TARGET=		tartest
   12 CPPOPTS +=	-I../star
   13 CPPOPTS +=	-DUSE_LARGEFILES
   14 CPPOPTS +=	-DSCHILY_PRINT
   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=		tartest.c
   21 LIBS=		-lschily $(LIB_INTL)
   22 #XMK_FILE=	Makefile.man
   23 XMK_FILE=	tartestman.mk
   24 
   25 ###########################################################################
   26 include		$(SRCROOT)/$(RULESDIR)/rules.cmd
   27 ###########################################################################
   28