File: Imakefile

package info (click to toggle)
xview 3.2p1.4-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 20,068 kB
  • ctags: 24,304
  • sloc: ansic: 241,105; yacc: 1,392; sh: 1,140; makefile: 273; lex: 76; perl: 54; asm: 50; cpp: 15
file content (22 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <XView.tmpl>

/**/# 
/**/# There is a bit of a catch-22 here.  You might need cpp in order to
/**/# generate cpp....  But, for systems on which that isn't a problem, here
/**/# is the proper Imakefile.
/**/# 

#if defined(SystemV)
     STRINGDEFS = 
#else
     STRINGDEFS = -Dstrchr=index -Dstrrchr=rindex
#endif
          STYLE = -DOLD_PREPROCESSOR=1
        DEFINES = $(STRINGDEFS) $(STYLE)
           SRCS = cpp1.c cpp2.c cpp3.c cpp4.c cpp5.c cpp6.c 
           OBJS = cpp1.o cpp2.o cpp3.o cpp4.o cpp5.o cpp6.o 

all:  cpp

SingleProgramTarget(cpp,$(OBJS),,)
DependTarget()