File: Imakefile

package info (click to toggle)
xfree86 3.3.2.3-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 168,984 kB
  • ctags: 121,965
  • sloc: ansic: 1,157,712; sh: 14,822; asm: 14,676; tcl: 8,247; cpp: 4,317; yacc: 2,705; perl: 711; awk: 393; lex: 383; makefile: 353; sed: 57; csh: 5
file content (45 lines) | stat: -rw-r--r-- 1,353 bytes parent folder | download | duplicates (2)
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
XCOMM $XConsortium: Imakefile /main/12 1996/09/04 09:36:17 kaleb $
XCOMM $XFree86: xc/programs/xkbcomp/Imakefile,v 3.3.2.1 1998/01/23 12:35:23 dawes Exp $
#define IHaveSubdirs

          SRCS = xkbcomp.c xkbscan.c expr.c vmod.c indicators.c misc.c \
		 keymap.c keycodes.c keytypes.c compat.c action.c alias.c \
		 symbols.c geometry.c xkbpath.c listing.c \
		 xkbparse.c parseutils.c utils.c
          OBJS = xkbcomp.o xkbscan.o expr.o vmod.o indicators.o misc.o alias.o \
		 keymap.o keycodes.o keytypes.o compat.o action.o \
		 symbols.o geometry.o xkbpath.o listing.o \
		 xkbparse.o parseutils.o utils.o
        DEPLIBS = $(DEPXKBFILELIB) $(DEPXLIBONLY)
LOCAL_LIBRARIES = $(XKBFILELIB) $(XLIB)
        SUBDIRS = compat geometry keycodes keymap semantics symbols types \
		  compiled rules

ROOT_DEFINES = -DDFLT_XKB_CONFIG_ROOT=\"$(LIBDIR)/xkb\"

INCLUDES = -I$(EXTINCSRC)

all::

SpecialCObjectRule(xkbpath,$(ICONFIGFILES),$(ROOT_DEFINES))

YaccFile(xkbparse,$(YFLAGS))

install::
	@echo "Creating $(LIBDIR)/xkb and $(LIBDIR)/xkb/compiled"
	MakeDir($(DESTDIR)$(LIBDIR)/xkb)
	MakeDir($(DESTDIR)$(LIBDIR)/xkb/compiled)

LinkVarDirectory(xkb,xkb,compiled,compiled)

InstallProgram(xkbcomp,$(LIBDIR)/xkb)

clean::
	RemoveFiles(test.h *.xkm *.xkb)

ComplexProgramTarget(xkbcomp)

#ifdef OS2Architecture
all::
	$(CP) ProgramTargetName(xkbcomp) /
#endif