From: Theodore Tso Date: Thu, 20 Apr 1995 16:09:48 +0000 (+0000) Subject: Use $(CC) instead of cc X-Git-Tag: krb5-1.0-beta5~347 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=21c89ef34e781fd58a95493ee87a42b9c0cd5ae3;p=krb5.git Use $(CC) instead of cc git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5392 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 > $@