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.

35 lines
493 B

  1. ## Makefile for PCBNEW et wxGTK
  2. include ../libs.linux
  3. # Additional compiler flags
  4. CPPFLAGS +=
  5. TARGET = pcbnew
  6. all: $(TARGET)
  7. include makefile.include
  8. CPPFLAGS += $(EXTRACPPFLAGS)
  9. EDACPPFLAGS = $(CPPFLAGS)
  10. $(TARGET): $(OBJECTS) makefile.gtk makefile.include $(LIBVIEWER3D) $(EXTRALIBS) ../libs.linux
  11. $(LD) $(LDFLAGS) $(OBJECTS) $(LIBVIEWER3D) $(LIBS_WITH_GL)\
  12. -o $(TARGET)
  13. install: $(TARGET)
  14. cp $(TARGET) $(KICAD_BIN)
  15. clean:
  16. rm -f *.o
  17. rm -f *.map
  18. rm -f $(TARGET)