kicad/3d-viewer/makefile.gtk

33 lines
477 B
Plaintext
Raw Normal View History

2007-05-06 16:03:28 +00:00
## Makefile for 3d-viewer.a ( wxGTK - LINUX )
include ../libs.linux
# Compiler flags.
CPPFLAGS += -DPCBNEW -I../pcbnew -I ../include -I../common
2007-05-06 16:03:28 +00:00
TARGET = 3d-viewer
FINAL = 1
all: $(TARGET).a
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
2007-11-04 22:14:47 +00:00
include makefile.include
-include *.d
2007-05-06 16:03:28 +00:00
$(TARGET).a: $(OBJECTS3D) makefile.gtk makefile.include
rm -f $@
ar -rv $@ $(OBJECTS3D)
ranlib $@
install:$(TARGET).a
2007-05-06 16:03:28 +00:00
clean:
2007-11-04 22:14:47 +00:00
rm -f *.o *.exe *.res *.map *.d
2007-05-06 16:03:28 +00:00
rm -f $(TARGET).a