Skip to content

Commit 63a262f

Browse files
committed
Invoke the sub-makes via $(MAKE), don't ignore their exit status
CVS-ID: Makefile 1.18
1 parent d82e17d commit 63a262f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2006,2008,2011 Solar Designer <solar at openwall.com>
2+
# Copyright (c) 2006,2008,2011,2017 Solar Designer <solar at openwall.com>
33
# Copyright (c) 2014,2017 ABC <abc at openwall.com>
44
#
55
# Redistribution and use in source and binary forms, with or without
@@ -25,7 +25,7 @@ all: $(PROJ)
2525
check: all tests
2626
tests: test
2727
test:
28-
make -C tests
28+
$(MAKE) -C tests
2929

3030
bindex: $(OBJS_BINDEX) $(OBJS_COMMON)
3131
$(LD) $(LDFLAGS) $(OBJS_BINDEX) $(OBJS_COMMON) -o $@
@@ -51,4 +51,4 @@ md5/md5.o: md5/md5.c md5/md5.h
5151

5252
clean:
5353
$(RM) $(PROJ) $(OBJS_BINDEX) $(OBJS_BIT) $(OBJS_COMMON)
54-
-make -C tests clean
54+
$(MAKE) -C tests clean

0 commit comments

Comments
 (0)