mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 16:19:20 +02:00
Use $(MAKE)
This commit is contained in:
parent
4a16503ea5
commit
59e6239f5a
6
Makefile
6
Makefile
|
@ -15,7 +15,7 @@ RM=rm
|
||||||
RM_FLAGS=-f
|
RM_FLAGS=-f
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@(cd src; make all)
|
@(cd src; $(MAKE) all)
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(sbindir)
|
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(sbindir)
|
||||||
|
@ -39,7 +39,7 @@ test: all
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "Cleaning..."
|
@echo "Cleaning..."
|
||||||
@(cd src; make clean)
|
@(cd src; $(MAKE) clean)
|
||||||
@(cd tests; make clean)
|
@(cd tests; $(MAKE) clean)
|
||||||
@rm -rf bin
|
@rm -rf bin
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue