kicad/cvpcb/makefile.gtk

39 lines
582 B
Plaintext
Raw Normal View History

2007-05-06 16:03:28 +00:00
# File: makefile
FINAL = 1
include ../libs.linux
2007-05-06 16:03:28 +00:00
# Compiler flags.
CPPFLAGS +=
2007-05-06 16:03:28 +00:00
EDACPPFLAGS = $(CPPFLAGS)
TARGET = cvpcb
all: $(TARGET)
2007-11-04 22:14:47 +00:00
deps:
$(CXX) $(CPPFLAGS) -E -MMD -MG *.cpp >/dev/null
2007-05-06 16:03:28 +00:00
include makefile.include
2007-11-04 22:14:47 +00:00
-include *.d
2007-05-06 16:03:28 +00:00
CPPFLAGS += $(EXTRACPPFLAGS)
EDACPPFLAGS = $(CPPFLAGS)
$(TARGET): $(OBJECTS) makefile.gtk makefile.include $(EXTRALIBS) ../libs.linux $(LIBVIEWER3D)
$(LD) $(OBJECTS) $(LDFLAGS) $(LIBVIEWER3D) $(LIBS_WITH_GL) -o $(TARGET)
install: $(TARGET)
mkdir -p $(KICAD_BIN)
2007-05-06 16:03:28 +00:00
cp -f $(TARGET) $(KICAD_BIN)
2007-05-06 16:03:28 +00:00
clean:
2007-11-04 22:14:47 +00:00
rm -f *.o *.d
rm -f $(TARGET)
2007-05-06 16:03:28 +00:00