Mercurial > hg > xemacs-beta
comparison lib-src/Makefile.in.in @ 151:59463afc5666 r20-3b2
Import from CVS: tag r20-3b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:37:19 +0200 |
parents | 538048ae2ab8 |
children | 25f70ba0133c |
comparison
equal
deleted
inserted
replaced
150:8ebb1c0f0f6f | 151:59463afc5666 |
---|---|
103 | 103 |
104 /* ========================== Lists of Files =========================== */ | 104 /* ========================== Lists of Files =========================== */ |
105 | 105 |
106 /* Things that a user might actually run, | 106 /* Things that a user might actually run, |
107 which should be installed in bindir. */ | 107 which should be installed in bindir. */ |
108 INSTALLABLES = etags ctags b2m gnuclient gnuattach gnudoit | 108 INSTALLABLES = etags ctags b2m gnuclient |
109 INSTALLABLE_SCRIPTS = rcs-checkin pstogif install-sid send-pr | 109 INSTALLABLE_SCRIPTS = rcs-checkin pstogif install-sid send-pr |
110 | 110 |
111 /* Things that Emacs runs internally, or during the build process, | 111 /* Things that Emacs runs internally, or during the build process, |
112 which should not be installed in bindir. */ | 112 which should not be installed in bindir. */ |
113 UTILITIES= make-path wakeup profile make-docfile digest-doc \ | 113 UTILITIES= make-path wakeup profile make-docfile digest-doc \ |
268 LOAD_X_LIBES=$(ld_switch_window_system) | 268 LOAD_X_LIBES=$(ld_switch_window_system) |
269 C_SWITCH_X=$(c_switch_window_system) | 269 C_SWITCH_X=$(c_switch_window_system) |
270 | 270 |
271 /* We need to #define emacs to get the right versions of some files. */ | 271 /* We need to #define emacs to get the right versions of some files. */ |
272 | 272 |
273 lib_src_cppflags = -Demacs -I../src -I${srcdir} -I${srcdir}/../src $(CPPFLAGS) | 273 lib_src_cppflags = -Demacs -I../src -I${srcdir} -I${srcdir}/../src $(CPPFLAGS) |
274 cflags = $(CFLAGS) $(lib_src_cppflags) $(c_switch_general) | 274 cflags = $(CFLAGS) $(lib_src_cppflags) $(c_switch_general) |
275 ldflags = $(ld_switch_general) $(LDFLAGS) $(ld_libs_general) | 275 ldflags = $(LDFLAGS) $(ld_switch_general) $(ld_libs_general) |
276 | 276 |
277 /* CPP_CFLAGS = $(c_switch_general) -Demacs -DHAVE_CONFIG_H \ */ | 277 /* CPP_CFLAGS = $(c_switch_general) -Demacs -DHAVE_CONFIG_H \ */ |
278 /* -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} */ | 278 /* -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} */ |
279 /* BASE_CFLAGS = -DHAVE_CONFIG_H \ */ | 279 /* BASE_CFLAGS = -DHAVE_CONFIG_H \ */ |
280 /* -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} */ | 280 /* -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} */ |
477 $(CC) $(cflags) ${srcdir}/make-po.c $(ldflags) -o make-po | 477 $(CC) $(cflags) ${srcdir}/make-po.c $(ldflags) -o make-po |
478 | 478 |
479 /* Why oh why does HP not include half of the standard X distribution? */ | 479 /* Why oh why does HP not include half of the standard X distribution? */ |
480 | 480 |
481 #ifdef HAVE_XAUTH | 481 #ifdef HAVE_XAUTH |
482 cflags_gnuserv = $(CFLAGS) $(c_switch_all) $(lib_src_cppflags) | 482 cflags_gnuserv = $(CFLAGS) $(lib_src_cppflags) $(c_switch_all) |
483 ldflags_gnuserv = $(ld_switch_all) $(LDFLAGS) $(ld_libs_all) | 483 ldflags_gnuserv = $(LDFLAGS) $(ld_switch_all) $(ld_libs_all) |
484 #else | 484 #else |
485 cflags_gnuserv = ${cflags} | 485 cflags_gnuserv = ${cflags} |
486 ldflags_gnuserv = ${ldflags} | 486 ldflags_gnuserv = ${ldflags} |
487 #endif | 487 #endif |
488 gnuslib.o: ${srcdir}/gnuslib.c ${srcdir}/gnuserv.h ../src/config.h | 488 gnuslib.o: ${srcdir}/gnuslib.c ${srcdir}/gnuserv.h ../src/config.h |
489 $(CC) -c ${cflags_gnuserv} ${srcdir}/gnuslib.c | 489 $(CC) -c ${cflags_gnuserv} ${srcdir}/gnuslib.c |
490 gnuclient: ${srcdir}/gnuclient.c gnuslib.o ${srcdir}/gnuserv.h | 490 gnuclient: ${srcdir}/gnuclient.c gnuslib.o ${srcdir}/gnuserv.h |
491 $(CC) ${cflags_gnuserv} -o gnuclient ${srcdir}/gnuclient.c gnuslib.o $(ldflags_gnuserv) | 491 $(CC) ${cflags_gnuserv} -o gnuclient ${srcdir}/gnuclient.c gnuslib.o $(ldflags_gnuserv) |
492 gnuattach: ${srcdir}/gnuclient.c gnuslib.o ${srcdir}/gnuserv.h gnuclient | |
493 $(CC) ${cflags_gnuserv} -o gnuattach -DGNUATTACH ${srcdir}/gnuclient.c gnuslib.o $(ldflags_gnuserv) | |
494 gnudoit: ${srcdir}/gnudoit.c gnuslib.o ${srcdir}/gnuserv.h | |
495 $(CC) ${cflags_gnuserv} -o gnudoit ${srcdir}/gnudoit.c gnuslib.o $(ldflags_gnuserv) | |
496 gnuserv: ${srcdir}/gnuserv.c gnuslib.o ${srcdir}/gnuserv.h | 492 gnuserv: ${srcdir}/gnuserv.c gnuslib.o ${srcdir}/gnuserv.h |
497 $(CC) ${cflags_gnuserv} -o gnuserv ${srcdir}/gnuserv.c gnuslib.o $(ldflags_gnuserv) | 493 $(CC) ${cflags_gnuserv} -o gnuserv ${srcdir}/gnuserv.c gnuslib.o $(ldflags_gnuserv) |
498 | 494 |
499 /* mmencode binary is used by tm - but is really part of the metamail package */ | 495 /* mmencode binary is used by tm - but is really part of the metamail package */ |
500 /* mmencode.c was merged copy of mmencode.c and codes.c of metamail */ | 496 /* mmencode.c was merged copy of mmencode.c and codes.c of metamail */ |