Skip to content

Commit

Permalink
* Makefile.in (all): Split into all-$(WHAT).
Browse files Browse the repository at this point in the history
(unixmac):  Add.
(libupdate):  Use $(RM).


git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5301 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
jgilmore committed Mar 29, 1995
1 parent 28e5d76 commit 331549c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/util/ChangeLog
@@ -1,3 +1,9 @@
Tue Mar 28 18:50:04 1995 John Gilmore (gnu at toad.com)

* Makefile.in (all): Split into all-$(WHAT).
(unixmac): Add.
(libupdate): Use $(RM).

Mon Feb 27 00:01:41 1995 Mark Eichin <eichin@cygnus.com>

* lndir: if $0 contains slashes, but does not have a leading
Expand Down
11 changes: 8 additions & 3 deletions src/util/Makefile.in
@@ -1,12 +1,17 @@
CFLAGS = $(CCOPTS)
LDFLAGS = -g

editsh = sed -e 's,@''ARADD''@,$(ARADD),g' -e 's,@''ARCHIVE''@,$(ARCHIVE),g'

all:: libupdate
all:: all-$(WHAT)

all-unix:: libupdate
all-mac::
all-windows: libupdate

unixmac: libupdate

libupdate: $(srcdir)/libupdate.sh
rm -f $@ $@.tmp
$(RM) $@ $@.tmp
$(editsh) $(srcdir)/libupdate.sh > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@

clean::
Expand Down

0 comments on commit 331549c

Please sign in to comment.