Makefile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #
  2. # Makefile:
  3. # wiringPi - A "wiring" library for the Raspberry Pi
  4. # https://projects.drogon.net/wiring-pi
  5. #
  6. # Copyright (c) 2012-2015 Gordon Henderson
  7. #################################################################################
  8. # This file is part of wiringPi:
  9. # A "wiring" library for the Raspberry Pi
  10. #
  11. # wiringPi is free software: you can redistribute it and/or modify
  12. # it under the terms of the GNU Lesser General Public License as published by
  13. # the Free Software Foundation, either version 3 of the License, or
  14. # (at your option) any later version.
  15. #
  16. # wiringPi is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU Lesser General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU Lesser General Public License
  22. # along with wiringPi. If not, see <http://www.gnu.org/licenses/>.
  23. #################################################################################
  24. ifneq ($V,1)
  25. Q ?= @
  26. endif
  27. #DEBUG = -g -O0
  28. DEBUG = -O3
  29. CC = gcc
  30. INCLUDE = -I/usr/local/include
  31. CFLAGS = $(DEBUG) -Wall $(INCLUDE) -Winline -pipe
  32. LDFLAGS = -L/usr/local/lib
  33. LDLIBS = -lwiringPi -lwiringPiDev -lpthread -lm
  34. # Should not alter anything below this line
  35. ###############################################################################
  36. SRC = scphat.c test.c
  37. OBJ = $(SRC:.c=.o)
  38. BINS = $(SRC:.c=)
  39. all: $(BINS)
  40. test: test.o
  41. $Q echo [link]
  42. $Q $(CC) -o $@ test.o $(LDFLAGS) $(LDLIBS)
  43. scphat: scphat.o
  44. $Q echo [link]
  45. $Q $(CC) -o $@ scphat.o $(LDFLAGS) $(LDLIBS)
  46. .c.o:
  47. $Q echo [CC] $<
  48. $Q $(CC) -c $(CFLAGS) $< -o $@
  49. clean:
  50. $Q echo "[Clean]"
  51. $Q rm -f $(OBJ) *~ core tags $(BINS)
  52. tags: $(SRC)
  53. $Q echo [ctags]
  54. $Q ctags $(SRC)
  55. install: scphat
  56. $Q echo Installing scphat into /usr/local/bin
  57. $Q cp -a scphat /usr/local/bin/scphat
  58. $Q chmod 755 /usr/local/bin/scphat
  59. $Q echo Done. Remember to load the I2C drivers if needed.
  60. depend:
  61. makedepend -Y $(SRC)
  62. # DO NOT DELETE