Use $(CC) instead of cc
authorTheodore Tso <tytso@mit.edu>
Thu, 20 Apr 1995 16:09:48 +0000 (16:09 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 20 Apr 1995 16:09:48 +0000 (16:09 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5392 dc483132-0cff-0310-8789-dd5450dbe970

src/util/profile/Makefile.in

index 0537db82d6a39f04449204d9eacb832744455189..f80bef4c66db648c56ecee27ed871e126b9ff11f 100644 (file)
@@ -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 > $@