Added endif's. This was causing an error exit.
This commit is contained in:
parent
3dc9f40097
commit
3cf0c1cf63
1 changed files with 4 additions and 2 deletions
|
|
@ -19,8 +19,9 @@ test:
|
|||
cd surfkin; @MAKE@ test
|
||||
cd diamondSurf; @MAKE@ test
|
||||
cd ck2cti_test; @MAKE@ test
|
||||
ifeq($(test_python),2)
|
||||
ifeq ($(test_python),2)
|
||||
cd python; @MAKE@ test
|
||||
endif
|
||||
|
||||
clean:
|
||||
$(RM) *.*~
|
||||
|
|
@ -29,8 +30,9 @@ clean:
|
|||
cd surfkin; @MAKE@ clean
|
||||
cd diamondSurf; @MAKE@ clean
|
||||
cd ck2cti_test; @MAKE@ clean
|
||||
ifeq($(test_python),2)
|
||||
ifeq ($(test_python),2)
|
||||
cd python; @MAKE@ clean
|
||||
endif
|
||||
|
||||
depends:
|
||||
cd cxx_ex; @MAKE@ depends
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue