File: GNUmakefile

package info (click to toggle)
inventor 2.1.5-10-19
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 36,252 kB
  • ctags: 24,580
  • sloc: ansic: 33,867; lisp: 7,361; cpp: 3,874; yacc: 369; sh: 359; perl: 234; awk: 141; makefile: 79; csh: 35; sed: 11
file content (22 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
IVDEPTH = ../../../../..
include $(IVDEPTH)/make/ivcommondefs

CXXFILES = \
	SoEngines.c++ \
	SoConcatenate.c++ \
	SoEngineInit.c++ \
	SoFieldConverters.c++ \
	SoGate.c++ \
	SoSelectOne.c++

all install: $(OBJECTS)

SoEngines.c++: SoCalcParse.c++

SoCalcParse.c++: SoCalcParse.y
	$(YACC) SoCalcParse.y
	sed -e 's/yy/SoCalc_yy/g' -e 's/2093/12093/' < y.tab.c > SoCalcParse.c++

LDIRT += y.tab.c SoCalcParse.c++

include $(IVCOMMONRULES)