summaryrefslogtreecommitdiffstats
path: root/src/usr/errl/parser/makefile
blob: 386ab9b5e92f2e412b88468a92c50b0fd344cbdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/usr/errl/parser/makefile $
#
# IBM CONFIDENTIAL
#
# COPYRIGHT International Business Machines Corp. 2011,2013
#
# p1
#
# Object Code Only (OCO) source materials
# Licensed Internal Code Source Materials
# IBM HostBoot Licensed Internal Code
#
# The source code for this program is not published or otherwise
# divested of its trade secrets, irrespective of what has been
# deposited with the U.S. Copyright Office.
#
# Origin: 30
#
# IBM_PROLOG_END_TAG

# makefile for errlparser a 32-bit x86 linux binary
# to extract the PEL of an error log and 
# put it in a temporary file so that the 
# FipS errl tool can format and display it.
# "Pretty printing" of those error logs is the
# function of FipS 'errl' and its plugins, not this program.
#
# This makefile runs 'genErrlParsers' which generates 
# the Hostboot SRC parsers and the makefile to build the
# Hostboot SRC and User Detail Data parsers

ROOTPATH=../../../..

GENDIR = ${ROOTPATH}/obj/genfiles
IMGDIR = ${ROOTPATH}/img
OBJDIR = ${ROOTPATH}/obj/modules/errl/parser


ERRLPARSE_TARGETS = \
	${GENDIR}/plugins/hbfwUdIds.H \
    ${GENDIR}/plugins/makefile

CC=i686-mcp6-g++ -m32
CFLAGS:=-g -O0   -I $(ROOTPATH)/src/include/usr -I ${GENDIR}

all: GEN_PASS CODE_PASS

GEN_PASS:  mkdirs  ${GENDIR}/comps.C ${ERRLPARSE_TARGETS}

ifeq ($(MAKECMDGOALS),all)
CODE_PASS: GEN_PASS
endif
ifeq ($(MAKECMDGOALS),)
CODE_PASS: GEN_PASS
endif

CODE_PASS: ${IMGDIR}/errlparser

mkdirs:
	mkdir -p ${OBJDIR}
	mkdir -p ${GENDIR}/plugins

# Generate error log parser code
${ERRLPARSE_TARGETS} : gen_errl_parsers

.PHONY: gen_errl_parsers
gen_errl_parsers:
	./genErrlParsers.pl -b ${ROOTPATH} -o ${GENDIR}/plugins

${GENDIR}/comps.C: ${ROOTPATH}/src/include/usr/hbotcompid.H
	grep "const compId_t [A-Z0-9]*_COMP_ID" $^ | \
	grep -v MY_COMP_ID | \
	sed 's/const compId_t \([A-Z0-9]*\)_COMP_ID[ =\t]*\(0[xX][0-9a-fA-F]*\).*/{ "\1", \2 },/' \
	> $@

${OBJDIR}/errlparser.o: errlparser.C ${ROOTPATH}/src/include/usr/errl/hberrltypes.H ${GENDIR}/comps.C
	$(CC) -c  $(CFLAGS)  -o $@  $<


${IMGDIR}/errlparser: ${OBJDIR}/errlparser.o
	$(CC) -o  $@ $<

clean:
	rm -f ${ERRLPARSE_TARGETS}
	rm -f ${GENDIR}/plugins/hbfwSrcParse*.C
	rm -f ${GENDIR}/comps.C
	rm -f ${IMGDIR}/errlparser
	rm -fr ${OBJDIR}

debug:
	ls -l 	${GENDIR}
	ls -l	${OBJDIR} 
	ls -l	${IMGDIR}
	
BEAM_PASS:
IMAGE_PASS:
CLEAN_PASS: clean
OpenPOWER on IntegriCloud