File: makefile.generic

package info (click to toggle)
dime 0.20111205-2.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,408 kB
  • sloc: cpp: 15,452; sh: 9,711; perl: 862; makefile: 642; ansic: 96
file content (21 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21


CC = g++ -I../include -DNDEBUG 
LD = g++ -L../build
# LD = g++ -L../build-tmake

LIBS = -ldime

.SUFFIXES: .cpp .o

all:: dxf2vrml

clean::
	@rm *.o dxf2vrml

.cpp.o:
	$(CC) -c $<

dxf2vrml: dxf2vrml.o
	$(LD) -o $@ $^ $(LIBS)