summaryrefslogtreecommitdiffstats
path: root/build
blob: 2a5114925b9f76cf902fa1d6dc260b5f315a3765 (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
#!/usr/bin/make -f

include ../source.mk

nop:
	@:

configure:
	oh-autoconfigure -B obj -- \
		--with-pkgversion='GDB for ProteanOS' \
		--enable-tui \
		--disable-gdbtk \
		--with-system-readline \
		--with-system-zlib \
		--with-expat \
		--without-python \
		--with-system-gdbinit=/etc/gdb/gdbinit \
		--with-lzma \
		--with-separate-debug-dir=/usr/lib/debug
	touch $@

build: configure
	oh-autobuild -B obj
	touch $@

install: build
	(cd obj; make MAKEINFO=: DESTDIR="$${PWD}/../dest" install)
	# Remove BFD files.
	rm -v \
		dest/usr/include/*.h \
		dest/usr/lib/$(OPK_HOST_ARCH)/libbfd.* \
		dest/usr/lib/$(OPK_HOST_ARCH)/libopcodes.* \
		dest/usr/share/info/bfd.info \
		dest/usr/share/locale/*/LC_MESSAGES/bfd.mo \
		dest/usr/share/locale/*/LC_MESSAGES/opcodes.mo
	# Make /etc/gdbinit.
	mkdir -p dest/etc/gdb
	printf '# System-wide GDB initialization file.\n' >dest/etc/gdb/gdbinit
	# Remove provided Python gdbinit files.
	rm -v dest/usr/share/gdb/system-gdbinit/*.py
	# Make /usr/bin/gdbtui.
	printf '#!/bin/sh\n\nexec "$${0%%tui}" --tui "$${@}"\n' \
		>dest/usr/bin/gdbtui
	oh-fixperms
	oh-strip
	oh-installfiles
	oh-shlibdeps