Skip to content

Commit ed61495

Browse files
committed
make it a little clearer what the default make task is doing
1 parent 9da1700 commit ed61495

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,13 @@ CPPUTEST_WARNINGFLAGS = -Wall -Wswitch-default -Werror
3636
CPPUTEST_CFLAGS += -Wall -Wstrict-prototypes -pedantic
3737
LD_LIBRARIES = -lpthread
3838

39-
STUFF_TO_CLEAN += objs/* objs/src/tempodb/* objs/tests/* objs/mocks/* objs/tests/tempodb/* lib/libtempodb.a
39+
STUFF_TO_CLEAN += objs/*.o objs/platform/*.o objs/src/tempodb/* objs/tests/* objs/mocks/* objs/tests/tempodb/* lib/libtempodb*.a
4040

4141
CC = cc
4242

43-
all: lib/libtempodb_posix.a
43+
all: posix
44+
45+
posix: lib/libtempodb_posix.a
4446

4547
lib/libtempodb_posix.a: objs/base64.o objs/tempodb.o objs/platform/posix.o
4648
ar rv lib/libtempodb_posix.a objs/base64.o objs/tempodb.o objs/platform/posix.o

0 commit comments

Comments
 (0)