Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / extension / dxf2svg / Makefile
1 objs = read_dxf.o entities.o entities2elements.o tables.o tables2svg_info.o blocks.o
2 flags = -O1
4 dxf2svg : dxf2svg.cpp $(objs)
5         g++ $(flags) -o dxf2svg dxf2svg.cpp $(objs)
7 test : test_dxf.cpp $(objs)
8         g++ $(flags) -o test test_dxf.cpp $(objs)
9         
10 %.o : %.cpp %.h 
11         g++ $(flags) -c $<
12         
13 clean :
14         rm dxf2svg $(objs)
16 install:
17         echo ****User intervention required****
18         echo
19         echo Copy dxf2svg executable and dxf2svg.inx to share/extension directory
20         echo Make sure file permissions are set correctly
21