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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#
# bibView
#
#
/* define as YES if you want the German version: */
#define German NO
/* nothing needs to be modified below this point */
CFLAGS = $(STD_CPP_DEFINES)
#ifdef NeXTArchitecture
SYS_LIBRARIES = XawClientLibs -lm -lsys_s
#else
#ifdef HPArchitecture
DEFINES = -D_HPUX_SOURCE
CC = gcc
CCOPTIONS =
CDEBUGFLAGS =
#else /* END HPArchitecture */
#ifdef SGIArchitecture
CCOPTIONS = -float -Wf,-XNl3000
PROTO_DEFINES =
CC = cc
#else /* Others */ /* END SGIArchitecture */
CC = gcc -fstrength-reduce -fpcc-struct-return
#endif
#endif
#endif
LOCAL_LIBRARIES = -lc $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)
DEPLIBS = $(DEPXLIB)
SRCS = bibview.c FileNom.c gui_main.c ctl_open.c ctl_opt.c\
gui_bibl.c gui_help.c ctl_srch.c gui_widg.c ctl_save.c\
gui_list.c gui_card.c ctl_card.c ctl_serv.c\
db_tree.c bib_file.c globdata.c bib_flex.c\
ComboBo.c rc_file.c ctl_prt.c gui_edit.c
OBJS = bibview.o FileNom.o gui_main.o ctl_open.o ctl_opt.o\
gui_bibl.o gui_help.o ctl_srch.o gui_widg.o ctl_save.o\
gui_list.o gui_card.o ctl_card.o ctl_serv.o\
db_tree.o bib_file.o globdata.o bib_flex.o\
ComboBo.o rc_file.o ctl_prt.o gui_edit.o
PROGRAMS = bibview
all:: $(PROGRAMS)
ComplexProgramTarget(bibview)
install::
rm -f BibView.ad
#if German
install::
ln -s BibView.ger.ad BibView.ad
#else
install::
ln -s BibView.eng.ad BibView.ad
#endif
InstallAppDefaults(BibView)
InstallAppDefaults(BibView-color)
|