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 (33 lines) | stat: -rw-r--r-- 994 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
#include <XView.tmpl>

XCOMM ##########################################################################
XCOMM # @(#)Imakefile	1.9 1/7/92 SMI
XCOMM # Imakefile for examples/textsw

#define InstallSrcs YES
LOCATION = examples/ttysw

DEFINES = -DSTANDALONE $(XVCLIENTSYSDEFINES)
SYS_LIBRARIES =
INCLUDES = -I. -I$(HEADER_DEST) -I$(TOP)
DEPLIBS = XViewClientDepLibs
LOCAL_LIBRARIES = XViewClientLibs
CURSES_LIBS = -lcurses

MAKEFILE_SIMPLE = Makefile.customer
SRCS = sample_tty.c textsw_to_ttysw.c \
	ttycurses.c xv_termsw.c
INSTALL_SRCS = $(SRCS)
ALLFILES = $(MAKEFILE_SIMPLE) $(SRCS)

PROGRAMS = sample_tty textsw_to_ttysw \
        ttycurses xv_termsw

AllTarget($(PROGRAMS))

SingleProgramTarget(sample_tty,sample_tty.o,$(LOCAL_LIBRARIES), /**/)
SingleProgramTarget(textsw_to_ttysw,textsw_to_ttysw.o,$(LOCAL_LIBRARIES), /**/)
SingleProgramTarget(ttycurses,ttycurses.o,$(LOCAL_LIBRARIES),$(CURSES_LIBS))
SingleProgramTarget(xv_termsw,xv_termsw.o,$(LOCAL_LIBRARIES), /**/)

#include <XView.prog>