kicad/cvpcb/makefile.gtk

41 lines
571 B
Plaintext
Raw Normal View History

2007-05-06 16:03:28 +00:00
# File: makefile
# Compiler flags.
CC = gcc
LD = gcc
FINAL = 1
# Compiler flags.
CPPFLAGS = -Wall -O2 `wx-config --cxxflags`
LDFLAGS = -s
EDACPPFLAGS = $(CPPFLAGS)
include ../libs.linux
TARGET = cvpcb
all: $(TARGET)
include makefile.include
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)
2007-05-06 16:03:28 +00:00
cp -f $(TARGET) $(KICAD_BIN)
2007-05-06 16:03:28 +00:00
clean:
rm -f *.o
rm -f $(TARGET)
2007-05-06 16:03:28 +00:00