You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 277B

1234567891011121314
  1. CXX = g++
  2. CXXFLAGS = -Wall -Wextra -Werror -pedantic -std=c++1y -g3 -ggdb3
  3. SRC = main.cpp mainclass.cpp
  4. OBJ = $(addprefix src/, $(SRC:.cpp=.o))
  5. all: camotion-pifaceo
  6. camotion-pifaceo: $(OBJ)
  7. $(LINK.cpp) $(OBJ) $(OUTPUT_OPTION)
  8. clean:
  9. rm -f $(OBJ)
  10. rm -f camotion-pifaceo