Mercurial > hg > xemacs-beta
comparison lib-src/Makefile.in.in @ 290:c9fe270a4101 r21-0b43
Import from CVS: tag r21-0b43
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:36:47 +0200 |
parents | 57709be46d1b |
children | 4b85ae5eabfb |
comparison
equal
deleted
inserted
replaced
289:6e6992ccc4b6 | 290:c9fe270a4101 |
---|---|
61 INSTALL_PROGRAM = @INSTALL_PROGRAM@ | 61 INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
62 INSTALL_DATA = @INSTALL_DATA@ | 62 INSTALL_DATA = @INSTALL_DATA@ |
63 | 63 |
64 ## ========================== Lists of Files =========================== | 64 ## ========================== Lists of Files =========================== |
65 | 65 |
66 #define NO_SHORTNAMES | |
67 #define NOT_C_CODE | |
68 #include "../src/config.h" | |
69 | |
66 ## Things that a user might actually run, | 70 ## Things that a user might actually run, |
67 ## which should be installed in bindir. | 71 ## which should be installed in bindir. |
68 INSTALLABLES = etags ctags b2m gnuclient ootags | 72 INSTALLABLES_BASE = etags ctags b2m gnuclient ootags |
69 INSTALLABLE_SCRIPTS = rcs-checkin pstogif install-sid send-pr gnudoit gnuattach | 73 INSTALLABLE_SCRIPTS = rcs-checkin pstogif install-sid send-pr gnudoit gnuattach |
74 #ifdef HAVE_MS_WINDOWS | |
75 INSTALLABLES = $(INSTALLABLES_BASE) runemacs | |
76 #else | |
77 INSTALLABLES = $(INSTALLABLES_BASE) | |
78 #endif | |
79 | |
70 | 80 |
71 ## Things that Emacs runs internally, or during the build process, | 81 ## Things that Emacs runs internally, or during the build process, |
72 ## which should not be installed in bindir. | 82 ## which should not be installed in bindir. |
73 UTILITIES= make-path wakeup profile make-docfile digest-doc \ | 83 UTILITIES= make-path wakeup profile make-docfile digest-doc \ |
74 sorted-doc movemail cvtmail fakemail yow hexl \ | 84 sorted-doc movemail cvtmail fakemail yow hexl \ |
112 | 122 |
113 MOVE_LIBS= | 123 MOVE_LIBS= |
114 | 124 |
115 ## ========================== start of cpp stuff ======================= | 125 ## ========================== start of cpp stuff ======================= |
116 | 126 |
117 #define NO_SHORTNAMES | |
118 #define NOT_C_CODE | |
119 #include "../src/config.h" | |
120 | |
121 #ifdef USE_GNU_MAKE | 127 #ifdef USE_GNU_MAKE |
122 vpath %.c @srcdir@ | 128 vpath %.c @srcdir@ |
123 vpath %.h @srcdir@ | 129 vpath %.h @srcdir@ |
124 #else | 130 #else |
125 VPATH=@srcdir@ | 131 VPATH=@srcdir@ |
262 etags_deps = ${srcdir}/etags.c $(GETOPTDEPS) regex.o ../src/config.h | 268 etags_deps = ${srcdir}/etags.c $(GETOPTDEPS) regex.o ../src/config.h |
263 | 269 |
264 etags: ${etags_deps} | 270 etags: ${etags_deps} |
265 $(CC) ${etags_args} -o $@ | 271 $(CC) ${etags_args} -o $@ |
266 | 272 |
273 runemacs_args = -I. $(cflags) -I${srcdir} -I${srcdir}/../src \ | |
274 -DVERSION='"${version}"' ${srcdir}/../nt/runemacs.c \ | |
275 $(ldflags) -Wl,--subsystem,windows | |
276 runemacs_deps = ${srcdir}/../nt/runemacs.c ../src/config.h | |
277 | |
278 runemacs: ${runemacs_deps} | |
279 $(CC) ${runemacs_args} -o $@ | |
280 | |
267 ootags_args = -I. $(cflags) -I${srcdir} -I${srcdir}/../src \ | 281 ootags_args = -I. $(cflags) -I${srcdir} -I${srcdir}/../src \ |
268 -DVERSION='"${version}"' ${srcdir}/ootags.c \ | 282 -DVERSION='"${version}"' ${srcdir}/ootags.c \ |
269 $(GETOPTOBJS) regex.o $(ldflags) | 283 $(GETOPTOBJS) regex.o $(ldflags) |
270 ootags_deps = ${srcdir}/ootags.c $(GETOPTDEPS) regex.o ../src/config.h | 284 ootags_deps = ${srcdir}/ootags.c $(GETOPTDEPS) regex.o ../src/config.h |
271 | 285 |