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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
noinst_LIBRARIES = libcommon.a
libcommon_a_SOURCES = \
AboutDlg.cpp \
AnnotateDlg.cpp \
AppConsole.cpp \
AppGlue.cpp \
AskYesNo.cpp \
Authen.cpp \
CommitDlg.cpp \
CPStr.cpp \
CheckoutDlg.cpp \
CvsAlert.cpp \
CvsArgs.cpp \
CvsCommands.cpp \
CvsEntries.cpp \
CvsIgnore.cpp \
CvsPrefs.cpp \
DiffDlg.cpp \
FileTraversal.cpp \
GetPassword.cpp \
GetPrefs.cpp \
ImportDlg.cpp \
ImportFilter.cpp \
ImportFilterDlg.cpp \
InitDlg.cpp \
LineCmd.cpp \
LogDlg.cpp \
LogParse.cpp \
MacrosSetup.cpp \
MoveToTrash.cpp \
MultiFiles.cpp \
MultiString.cpp \
Persistent.cpp \
PromptFiles.cpp \
ReleaseDlg.cpp \
RtagDlg.cpp \
TagDlg.cpp \
TextBinary.cpp \
TclGlue.cpp \
UpdateDlg.cpp \
UCvsApp.cpp \
UCvsConsole.cpp \
UCvsFolders.cpp \
UCvsFiles.cpp \
UCvsFrame.cpp \
UCvsGraph.cpp \
UCvsMenubar.cpp \
UCvsToolbar.cpp \
getline.c \
getopt.c \
getopt1.c \
cvsgui_wire.cpp \
cvsgui_process.cpp
noinst_HEADERS = \
AboutDlg.h \
AnnotateDlg.h \
AppConsole.h \
AppGlue.h \
AskYesNo.h \
Authen.h \
CPStr.h \
CheckoutDlg.h \
CommitDlg.h \
CvsAlert.h \
CvsArgs.h \
CvsCommands.h \
CvsEntries.h \
CvsIgnore.h \
CvsPrefs.h \
DiffDlg.h \
EditorMonDlg.h \
FileTraversal.h \
GetPassword.h \
GetPrefs.h \
GetValue.h \
ImportDlg.h \
ImportFilter.h \
ImportFilterDlg.h \
InitDlg.h \
LineCmd.h \
LogDlg.h \
LogParse.h \
MacrosSetup.h \
MoveToTrash.h \
MakeSurePathExists.h \
MultiFiles.h \
MultiString.h \
Persistent.h \
PromptFiles.h \
ReleaseDlg.h \
RtagDlg.h \
SmartComboBox.h \
SortList.h \
StatusDlg.h \
TagDlg.h \
TclGlue.h \
TextBinary.h \
UpdateDlg.h \
UCvsApp.h \
UCvsCommands.h \
UCvsConsole.h \
UCvsDialogs.h \
UCvsFolders.h \
UCvsFiles.h \
UCvsFrame.h \
UCvsGraph.h \
UCvsMenubar.h \
UCvsToolbar.h \
VolsPaths.h \
dll_garbage.h \
dll_glue.h \
dll_loader.h \
dll_process.h \
fnmatch.h \
getline.h \
getopt.h \
cvsgui_wire.h \
cvsgui_process.h \
cvsgui_protocol.h
INCLUDES = -I$(top_srcdir)/gcvs -I$(top_srcdir)/gcvs/src -I/. -I$(top_srcdir)/cvstree -I$(top_srcdir)/rf
EXTRA_DIST = .cvsignore cvsgui.c cvsgui.h
UCvsApp.o: UCvsApp.cpp $(top_srcdir)/GCVS-VERSION
$(CXXCOMPILE) -DPACKAGE="\"$(PACKAGE)\"" -DVERSION="\"$(VERSION)\"" -DPKGDATA="\"$(pkgdatadir)\"" -DEXECLIB="\"$(bindir)\"" -c $<
TclGlue.o: TclGlue.cpp
$(CXXCOMPILE) @TCL_CFLAGS@ -DUSE_TCL="$(HAVE_TCL)" -c $<
CvsPrefs.o: CvsPrefs.cpp
$(CXXCOMPILE) -DEXECLIB="\"$(bindir)\"" -c $<
|