[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lib-src/Makefile.in
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] Changes to emacs/lib-src/Makefile.in |
Date: |
Tue, 26 Jul 2005 17:43:16 -0400 |
Index: emacs/lib-src/Makefile.in
diff -c emacs/lib-src/Makefile.in:1.142 emacs/lib-src/Makefile.in:1.143
*** emacs/lib-src/Makefile.in:1.142 Mon Jul 4 15:24:11 2005
--- emacs/lib-src/Makefile.in Tue Jul 26 21:43:12 2005
***************
*** 1,5 ****
# Makefile for lib-src subdirectory in GNU Emacs.
! # Copyright (C) 1985, 1987, 1988, 1993, 1994, 2002, 2003, 2004
# Free Software Foundation, Inc.
# This file is part of GNU Emacs.
--- 1,5 ----
# Makefile for lib-src subdirectory in GNU Emacs.
! # Copyright (C) 1985, 1987, 1988, 1993, 1994, 2002, 2003, 2004, 2005
# Free Software Foundation, Inc.
# This file is part of GNU Emacs.
***************
*** 344,350 ****
rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
mostlyclean:
! -rm -f core *.o
clean: mostlyclean
-rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
--- 344,350 ----
rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
mostlyclean:
! -rm -f core *.o getopt.h getopt.h-t
clean: mostlyclean
-rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
***************
*** 382,392 ****
$(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
./test-distrib ${srcdir}/testfile
! GETOPTOBJS = getopt.o getopt1.o
! GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
! getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
! getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
#ifdef REGEXP_IN_LIBC
--- 382,399 ----
$(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
./test-distrib ${srcdir}/testfile
! /* We need the following in order to create a <getopt.h> when the system
! doesn't have one that works with the given compiler. */
! GETOPT_H = @GETOPT_H@
! getopt.h: getopt_.h
! cp $(srcdir)/getopt_.h address@hidden
! mv address@hidden $@
!
! GETOPTOBJS = @GETOPTOBJS@
! GETOPTDEPS = $(GETOPTOBJS) $(GETOPT_H)
! getopt.o: ${srcdir}/getopt.c $(GETOPT_H) ${srcdir}/gettext.h
${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
! getopt1.o: ${srcdir}/getopt1.c $(GETOPT_H)
${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
#ifdef REGEXP_IN_LIBC
***************
*** 430,436 ****
movemail${EXEEXT}: movemail.o pop.o $(GETOPTDEPS)
$(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(GETOPTOBJS)
$(LOADLIBES) $(LIBS_MAIL) $(LIBS_MOVE) -o movemail
! movemail.o: ${srcdir}/movemail.c ../src/config.h
$(CC) -c ${CPP_CFLAGS} -Demacs ${MOVE_FLAGS} ${srcdir}/movemail.c
pop.o: ${srcdir}/pop.c ../src/config.h
--- 437,443 ----
movemail${EXEEXT}: movemail.o pop.o $(GETOPTDEPS)
$(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(GETOPTOBJS)
$(LOADLIBES) $(LIBS_MAIL) $(LIBS_MOVE) -o movemail
! movemail.o: ${srcdir}/movemail.c ../src/config.h $(GETOPT_H)
$(CC) -c ${CPP_CFLAGS} -Demacs ${MOVE_FLAGS} ${srcdir}/movemail.c
pop.o: ${srcdir}/pop.c ../src/config.h