Deleted Added
full compact
Makefile.in (32785) Makefile.in (34461)
1# Makefile for GNU CVS program.
2# Do not use this makefile directly, but only from `../Makefile'.
3# Copyright (C) 1986, 1988-1990 Free Software Foundation, Inc.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2, or (at your option)
8# any later version.

--- 25 unchanged lines hidden (view full) ---

34INSTALL = @INSTALL@
35INSTALL_DATA = @INSTALL_DATA@
36INSTALL_PROGRAM = @INSTALL_PROGRAM@
37
38LIBS = @LIBS@
39
40SOURCES = add.c admin.c buffer.c checkin.c checkout.c classify.c client.c \
41commit.c create_adm.c cvsrc.c diff.c edit.c entries.c error.c expand_path.c \
1# Makefile for GNU CVS program.
2# Do not use this makefile directly, but only from `../Makefile'.
3# Copyright (C) 1986, 1988-1990 Free Software Foundation, Inc.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2, or (at your option)
8# any later version.

--- 25 unchanged lines hidden (view full) ---

34INSTALL = @INSTALL@
35INSTALL_DATA = @INSTALL_DATA@
36INSTALL_PROGRAM = @INSTALL_PROGRAM@
37
38LIBS = @LIBS@
39
40SOURCES = add.c admin.c buffer.c checkin.c checkout.c classify.c client.c \
41commit.c create_adm.c cvsrc.c diff.c edit.c entries.c error.c expand_path.c \
42fileattr.c find_names.c hash.c history.c ignore.c import.c \
42fileattr.c find_names.c hardlink.c hash.c history.c ignore.c import.c \
43lock.c log.c login.c logmsg.c main.c mkmodules.c modules.c myndbm.c no_diff.c \
44parseinfo.c patch.c rcs.c rcscmds.c recurse.c release.c remove.c repos.c \
45root.c rtag.c scramble.c server.c status.c subr.c filesubr.c run.c \
46tag.c update.c watch.c wrapper.c vers_ts.c version.c zlib.c
47
48OBJECTS = add.o admin.o buffer.o checkin.o checkout.o classify.o client.o \
49commit.o create_adm.o cvsrc.o diff.o edit.o entries.o expand_path.o \
43lock.c log.c login.c logmsg.c main.c mkmodules.c modules.c myndbm.c no_diff.c \
44parseinfo.c patch.c rcs.c rcscmds.c recurse.c release.c remove.c repos.c \
45root.c rtag.c scramble.c server.c status.c subr.c filesubr.c run.c \
46tag.c update.c watch.c wrapper.c vers_ts.c version.c zlib.c
47
48OBJECTS = add.o admin.o buffer.o checkin.o checkout.o classify.o client.o \
49commit.o create_adm.o cvsrc.o diff.o edit.o entries.o expand_path.o \
50fileattr.o find_names.o hash.o history.o ignore.o import.o \
50fileattr.o find_names.o hardlink.o hash.o history.o ignore.o import.o \
51lock.o log.o login.o logmsg.o main.o mkmodules.o modules.o myndbm.o no_diff.o \
52parseinfo.o patch.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o \
53root.o rtag.o scramble.o server.o status.o tag.o update.o \
54watch.o wrapper.o vers_ts.o \
55subr.o filesubr.o run.o version.o error.o zlib.o
56
51lock.o log.o login.o logmsg.o main.o mkmodules.o modules.o myndbm.o no_diff.o \
52parseinfo.o patch.o rcs.o rcscmds.o recurse.o release.o remove.o repos.o \
53root.o rtag.o scramble.o server.o status.o tag.o update.o \
54watch.o wrapper.o vers_ts.o \
55subr.o filesubr.o run.o version.o error.o zlib.o
56
57HEADERS = buffer.h cvs.h rcs.h hash.h myndbm.h \
57HEADERS = buffer.h cvs.h rcs.h hardlink.h hash.h myndbm.h \
58 update.h server.h client.h error.h fileattr.h edit.h watch.h
59
60TAGFILES = $(HEADERS) options.h.in $(SOURCES)
61
62DISTFILES = .cvsignore Makefile.in \
63 ChangeLog ChangeLog-97 ChangeLog-96 ChangeLog-9395 ChangeLog-9194 \
64 sanity.sh cvsbug.sh $(TAGFILES) build_src.com
65

--- 54 unchanged lines hidden (view full) ---

120TAGS: $(TAGFILES)
121 etags `for i in $(TAGFILES); do echo $(srcdir)/$$i; done`
122
123ls:
124 @echo $(DISTFILES)
125.PHONY: ls
126
127clean:
58 update.h server.h client.h error.h fileattr.h edit.h watch.h
59
60TAGFILES = $(HEADERS) options.h.in $(SOURCES)
61
62DISTFILES = .cvsignore Makefile.in \
63 ChangeLog ChangeLog-97 ChangeLog-96 ChangeLog-9395 ChangeLog-9194 \
64 sanity.sh cvsbug.sh $(TAGFILES) build_src.com
65

--- 54 unchanged lines hidden (view full) ---

120TAGS: $(TAGFILES)
121 etags `for i in $(TAGFILES); do echo $(srcdir)/$$i; done`
122
123ls:
124 @echo $(DISTFILES)
125.PHONY: ls
126
127clean:
128 /bin/rm -f $(PROGS) *.o core check.log check.plog
128 rm -f $(PROGS) *.o core check.log check.plog
129.PHONY: clean
130
131distclean: clean
132 rm -f tags TAGS Makefile options.h
133.PHONY: distclean
134
135realclean: distclean
136.PHONY: realclean

--- 58 unchanged lines hidden ---
129.PHONY: clean
130
131distclean: clean
132 rm -f tags TAGS Makefile options.h
133.PHONY: distclean
134
135realclean: distclean
136.PHONY: realclean

--- 58 unchanged lines hidden ---