diff options
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile index d53ed8241..f4d55570a 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -8,7 +8,7 @@ APPS = general showindex diff rev-list cat-file status log rev-parse init all: $(APPS) % : %.c - $(CC) -o $@ $(CFLAGS) $< $(LFLAGS) + $(CC) -o $@ common.c $(CFLAGS) $< $(LFLAGS) clean: $(RM) $(APPS) |