2007-05-06 16:03:28 +00:00
|
|
|
## Makefile for 3d-viewer.a ( wxGTK - LINUX )
|
|
|
|
|
|
|
|
include ../libs.linux
|
|
|
|
|
2007-06-14 16:28:05 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
include makefile.include
|
|
|
|
|
|
|
|
|
|
|
|
$(TARGET).a: $(OBJECTS3D) makefile.gtk makefile.include
|
|
|
|
rm -f $@
|
|
|
|
ar -rv $@ $(OBJECTS3D)
|
|
|
|
ranlib $@
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
install:$(TARGET).a
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o
|
|
|
|
rm -f *.exe
|
|
|
|
rm -f *.res
|
|
|
|
rm -f *.map
|
|
|
|
rm -f $(TARGET).a
|
|
|
|
|
|
|
|
|
|
|
|
|