diff options
| author | Theodore Tso <tytso@mit.edu> | 1995-04-20 16:09:48 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1995-04-20 16:09:48 +0000 |
| commit | 21c89ef34e781fd58a95493ee87a42b9c0cd5ae3 (patch) | |
| tree | ca8b58c645caec7aabb3f81b325b28f7301fde42 /src/util | |
| parent | 66bce56972c99fefaccafb7733e406d86295a31c (diff) | |
| download | krb5-21c89ef34e781fd58a95493ee87a42b9c0cd5ae3.tar.gz krb5-21c89ef34e781fd58a95493ee87a42b9c0cd5ae3.tar.xz krb5-21c89ef34e781fd58a95493ee87a42b9c0cd5ae3.zip | |
Use $(CC) instead of cc
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5392 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/profile/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/profile/Makefile.in b/src/util/profile/Makefile.in index 0537db82d..f80bef4c6 100644 --- a/src/util/profile/Makefile.in +++ b/src/util/profile/Makefile.in @@ -16,17 +16,17 @@ SRCS = $(srcdir)/prof_tree.c \ LIBS = ../et/libcom_err.a -all:: includes libprofile.a test_parse +all:: includes libprofile.a test_parse test_profile libprofile.a: $(OBJS) $(ARCHIVE) $@ $(OBJS) $(RANLIB) $@ test_parse: test_parse.o $(OBJS) $(LIBS) - cc -o test_parse test_parse.o $(OBJS) $(LIBS) + $(CC) -o test_parse test_parse.o $(OBJS) $(LIBS) test_profile: test_profile.o $(OBJS) $(LIBS) - cc -o test_profile test_profile.o $(OBJS) $(LIBS) + $(CC) -o test_profile test_profile.o $(OBJS) $(LIBS) profile.h: prof_err.h profile.h.in cat $(srcdir)/profile.h.in prof_err.h > $@ |
