summaryrefslogtreecommitdiffstats
path: root/src/usr/errl/parser/makefile
blob: 69451597aac6a85b2a8f3648c0491cefa06a931d (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
# 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}

code_pass: ${IMGDIR}/errlparser

# errlparserbase and errlusrparser are plugins stuff, not errlparser. 
# OBJFILES = ${OBJDIR}/errlparserbase.o	${OBJDIR}/errlusrparser.o
# %.o : %.C
# 	$(CC) -c  $(CFLAGS) -o $@  $<

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

# Generate error log parser code
${ERRLPARSE_TARGETS} ::
	./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:
	# dummy
OpenPOWER on IntegriCloud