File: imake.local

package info (click to toggle)
cxterm 5.1p1-4
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 8,188 kB
  • ctags: 2,304
  • sloc: ansic: 24,313; sh: 1,040; makefile: 133
file content (35 lines) | stat: -rw-r--r-- 821 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* -------------------------------------------------------------------- */
/* definition part, perhaps should have moved to X11/config/... 	*/
/* -------------------------------------------------------------------- */

#ifndef	DictSrc
#define DictSrc(basename) basename.tit
#endif

#ifndef	DictObj
#define DictObj(basename) basename.cit
#endif

#ifndef	MakeDicts
#define	MakeDicts()							@@\
all::  $(OBJS)								@@\
									@@\
clean::									@@\
	$(RM) *.cit
#endif /* MakeDicts */

#ifndef	DictTarget
#define	DictTarget(basename)						@@\
DictObj(basename): DictSrc(basename)					@@\
	$(DICTC) $(DICTCFLAGS) $? > $@
#endif /* DictTarget */

#ifndef	DictCompilerFlags
#define DictCompilerFlags
#endif

    DICTCFLAGS = DictCompilerFlags
         DICTC = $(TOP)/utils/tit2cit

       DICTDIR = $(LIBDIR)/cxterm.dic