File: rules

package info (click to toggle)
gcc-h8300-hms 1%3A3.4.6%2Bdfsg2-4
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 94,508 kB
  • ctags: 79,901
  • sloc: ansic: 627,399; cpp: 89,017; makefile: 24,796; asm: 21,058; sh: 16,616; yacc: 3,740; perl: 718; xml: 692; lex: 587; exp: 298; awk: 223; pascal: 86; lisp: 59; sed: 37
file content (156 lines) | stat: -rwxr-xr-x 4,156 bytes parent folder | download
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

CFLAGS = -Wall

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0 -g
else
	CFLAGS += -O2
endif

# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_BUILD_GNU_TYPE      := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
DEB_HOST_GNU_TYPE       := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)

ifeq ($(DEB_HOST_GNU_TYPE),aarch64-linux-gnu)
	CFLAGS += -mcmodel=large
endif

TARGET = h8300-hitachi-coff

# TODO package name should be changed in the future
p_cross = gcc-h8300-hms

configure: configure-stamp
configure-stamp:
	dh_testdir
	rm configure && autoconf
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
	cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
	cp -f /usr/share/misc/config.guess config.guess
endif
	mkdir builddir-$(TARGET)
	cd builddir-$(TARGET) && \
			env CC="$(CC)" CFLAGS="$(CFLAGS)" \
	    ../configure --prefix=/usr \
				--libexecdir=/usr/lib \
        --enable-languages=c,c++ \
				--with-gnu-as \
				--with-gnu-ld \
				--disable-libssp \
				--enable-target-optspace \
				--disable-multilib \
        --target=$(TARGET)
	touch configure-stamp

build-arch: build-stamp

build-stamp: configure-stamp
	dh_testdir

	# Add here commands to compile the package.
	cd builddir-$(TARGET) && $(MAKE)
	touch $@

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp 
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
	rm -f config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
	rm -f config.guess
endif
	# Add here commands to clean up after the build process.
	rm -rf builddir-$(TARGET)

	dh_clean

install-arch: build-arch
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Add here commands to install the package into debian/#PACKAGE#.
	cd builddir-$(TARGET) && $(MAKE) install DESTDIR=$(CURDIR)/debian/$(p_cross)/

	ln -sf $(TARGET)-g++ debian/$(p_cross)/usr/bin/$(TARGET)-c++
	ln -sf $(TARGET)-gcc-3.4.6 debian/$(p_cross)/usr/bin/$(TARGET)-gcc

	cd debian/$(p_cross)/usr/ && \
	rm -rf bin/$(TARGET)-gcov bin/$(TARGET)-gccbug \
	$(TARGET)/ include/ share/man/man1/$(TARGET)-gcov.1* \
	bin/$(TARGET)-protoize share/man/man1/$(TARGET)-protoize.1* \
	bin/$(TARGET)-unprotoize share/man/man1/$(TARGET)-unprotoize.1* \
	lib/libiberty.a share/info share/man/man7 \
	share/locale
	
	for i in $(CURDIR)/debian/$(p_cross)/usr/bin/$(TARGET)-* ; do \
		ln -s `basename $$i` $(CURDIR)/debian/$(p_cross)/usr/bin/h8300-hms-`echo $$i | sed 's/.*$(TARGET)-//'` ; \
	done

build-indep:

install-indep: build-indep

build: build-arch build-indep

install: install-arch install-indep

# Build architecture-independent files here.
binary-indep: install-indep
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: install-arch
	dh_testdir
	dh_testroot
	dh_installchangelogs ChangeLog
	dh_installdocs
#	dh_installexamples
#	dh_install
#	dh_installmenu
#	dh_installdebconf	
#	dh_installlogrotate
#	dh_installemacsen
#	dh_installpam
#	dh_installmime
#	dh_python
#	dh_installinit
#	dh_installcron
#	dh_installinfo
#	dh_installman
	dh_link
	dh_strip -X.so -X.a -X.o
	for f in `find debian/$(p_cross) -name '*.so*'`; do \
	  $(TARGET)-strip --remove-section=.comment --remove-section=.note --strip-unneeded $$f; \
	done
	for f in `find debian/$(p_cross) -name '*.a*'`; do \
	  $(TARGET)-strip --strip-debug $$f; \
	done
	dh_compress
	dh_fixperms
#	dh_perl
#	dh_makeshlibs
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build-arch build-indep clean binary-indep binary-arch binary install-arch install-indep configure build install