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)
|