Skip to content

Commit

Permalink
pretty make output
Browse files Browse the repository at this point in the history
  • Loading branch information
wfraser committed Mar 31, 2016
1 parent 0307595 commit d57d0d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ all: backfs
.SUFFIXES:

%.o: %.c
#@echo " CC $<"
$(CC) $(CFLAGS) -c -o $@ $<
@echo " CC $<"
@$(CC) $(CFLAGS) -c -o $@ $<

backfs: $(OBJS)
#@echo " LINK $<"
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)
@echo " LINK $<"
@$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)
@echo "Built BackFS for branch: $(BRANCH)"

clean:
Expand Down

0 comments on commit d57d0d0

Please sign in to comment.