Advertisement
Guest User

makefile

a guest
May 26th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 2.07 KB | None | 0 0
  1.  
  2. #----------------------------------------------------------------------------------------------#
  3. #  Copyright (C) 2012 Daniel Bolaños - www.bltek.com - Boulder Language Technologies           #
  4. #                                                                                              #
  5. #  www.bavieca.org is the website of the Bavieca Speech Recognition Toolkit                    #
  6. #                                                                                              #
  7. #  Licensed under the Apache License, Version 2.0 (the "License");                             #
  8. #  you may not use this file except in compliance with the License.                            #
  9. #  You may obtain a copy of the License at                                                     #
  10. #                                                                                              #
  11. #          http://www.apache.org/licenses/LICENSE-2.0                                          #
  12. #                                                                                              #
  13. #  Unless required by applicable law or agreed to in writing, software                         #
  14. #  distributed under the License is distributed on an "AS IS" BASIS,                           #
  15. #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.                    #
  16. #  See the License for the specific language governing permissions and                         #
  17. #  limitations under the License.                                                              #
  18. # ---------------------------------------------------------------------------------------------#
  19.  
  20. include Makefile.defines
  21.  
  22. all:
  23.         (cd common; $(MAKE) static)
  24.         (cd common; $(MAKE) pic)
  25.         (cd api; $(MAKE) all)
  26.         (cd tools; $(MAKE) all)
  27.  
  28. btools:
  29.         (cd common; $(MAKE) static)
  30.         (cd tools; $(MAKE) all)
  31.  
  32. java-api:
  33.         (cd common; $(MAKE) pic)
  34.         (cd api; $(MAKE) java-api)
  35.  
  36. clean:
  37.         (cd common; $(MAKE) clean)
  38.         (cd api; $(MAKE) clean)
  39.         (cd tools; $(MAKE) clean)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement