File: Imakefile

package info (click to toggle)
xcb 2.4-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 312 kB
  • sloc: ansic: 4,121; makefile: 16
file content (25 lines) | stat: -rw-r--r-- 643 bytes parent folder | download | duplicates (7)
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

# Add your favourite compiler flags here, and select either the
# Athena or Motif GUI interface.
#
DEFINES			= $(GUI) # -DXVIEW
GUI			= -DATHENA
#GUI			= -DMOTIF

# These are the libraries required for linking.  Select one.
#
DEPLIBS			= $(DEPXALIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB)
LOCAL_LIBRARIES		= $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)
#DEPLIBS		= $(DEPMOTIFLIB) $(DEPXTOOLLIB) $(DEPXLIB)
#LOCAL_LIBRARIES	= $(MOTIFLIB) $(XTOOLLIB) $(XLIB)

SYS_LIBRARIES		= 
SRCS			= xcb.c
OBJS			= xcb.o

ComplexProgramTarget(xcb)

Xcb.ad:	Xcb.ad.base
	$(CPP) -P Xcb.ad.base $(GUI) > $@    # -P removes line directives.

InstallAppDefaults(Xcb)