summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/profile/Makefile.in6
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 > $@