summaryrefslogtreecommitdiffstats
path: root/src/util/Makefile.in
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@toad.com>1995-03-29 02:50:55 +0000
committerJohn Gilmore <gnu@toad.com>1995-03-29 02:50:55 +0000
commit10919d2303febb33570f8805671738802170ed25 (patch)
tree978c98487d7a89bef48f506471451443dd3a9bbe /src/util/Makefile.in
parent3ee8ad63cc3317c42129f44565234159f6a9959b (diff)
downloadkrb5-10919d2303febb33570f8805671738802170ed25.tar.gz
krb5-10919d2303febb33570f8805671738802170ed25.tar.xz
krb5-10919d2303febb33570f8805671738802170ed25.zip
* Makefile.in (all): Split into all-$(WHAT).
(unixmac): Add. (libupdate): Use $(RM). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5301 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/Makefile.in')
-rw-r--r--src/util/Makefile.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/util/Makefile.in b/src/util/Makefile.in
index 56ae9233f3..6b564ceaac 100644
--- a/src/util/Makefile.in
+++ b/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::