aboutsummaryrefslogtreecommitdiff
path: root/test/elf_parser/Makefile
blob: ea726bd342fa7c64186769c647b77b66db3d4c88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
all: libtest-32.h libtest-64.h

libtest-%.h: libtest-%.so
	xxd -i $^ > $@
	sed -i 's#^unsigned#// NOLINTNEXTLINE\nunsigned#' $@
	clang-format -i $@

libtest-%.so: test.cc
	$(CC) -m$* -shared -fPIC -o $@ $^

clean:
	$(RM) libtest-*.so libtest-*.h