File: GNUmakefile

package info (click to toggle)
openscenegraph 1.2.0-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 26,924 kB
  • ctags: 25,229
  • sloc: cpp: 239,326; ansic: 2,178; sh: 1,990; yacc: 548; perl: 237; makefile: 227; lex: 151
file content (11 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
OBJS1 = example1.o
OBJS2 = example2.o
LIBS = -losgDB -losg -losgProducer -lProducer

all : example1 example2

example1 : $(OBJS1)
	$(CXX) $(LDFLAGS) $(OBJS1) $(LIBS) -o $@

example2 : $(OBJS2)
	$(CXX) $(LDFLAGS) $(OBJS2) $(LIBS) -o $@