Commit b39843f3 by Shawn O. Pearce

Use wildcard to avoid listing out all source files by hand

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
parent 7335ffc3
...@@ -5,15 +5,8 @@ DOXYGEN = doxygen ...@@ -5,15 +5,8 @@ DOXYGEN = doxygen
CFLAGS = -g -O2 CFLAGS = -g -O2
BASIC_CFLAGS = -Isrc BASIC_CFLAGS = -Isrc
OBJS = \ OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
src/git_odb.o \ HDRS = $(wildcard src/*.h)
src/git_oid.o \
#end OBJS
HDRS = \
src/git_oid.h \
src/git_common.h \
#end HDRS
all:: libgit2.a all:: libgit2.a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment