File: Imakefile

package info (click to toggle)
xview 3.2p1.4-28.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 26,680 kB
  • ctags: 34,403
  • sloc: ansic: 241,397; yacc: 1,435; sh: 1,086; makefile: 148; lex: 76; perl: 54; asm: 50; cpp: 15
file content (52 lines) | stat: -rw-r--r-- 866 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <XView.tmpl> 

#if SharedLibXView
#define DoSharedLib YES
#endif
#include <Library.tmpl>

XCOMM ###########################################################################
XCOMM # @(#)Imakefile	1.8 28 Jun 1993 SMI

#ifndef SubdirHasTextObjs
#define SubdirHasTextObjs YES
#endif
#ifndef SubdirHasDataObjs 
#define SubdirHasDataObjs YES
#endif
#ifndef SubdirHasPublicHeaders
#define SubdirHasPublicHeaders YES
#endif
#ifndef SubdirHasPrivateHeaders 
#define SubdirHasPrivateHeaders YES 
#endif

HDRSPUBLIC=     openmenu.h
HDRSPRIVATE=    omi_impl.h om_impl.h

DATA_OBJS = om_data.o
TEXT_OBJS =\
	omi.o\
	om_public.o\
	om_render.o\
	om_set.o\
	om_get.o\
	om_compat.o

SRCS =\
	omi.c\
	om_public.c\
	om_render.c\
	om_set.c\
	om_get.c\
	om_compat.c\
	om_data.c



LIBTARGET = xview

TARGETDIR = ../../lib${LIBTARGET}/
SOREV = $(SOXVIEWREV)

#include <XView.obj>