cc7d131d95
Some checks failed
linux-x64-gcc / linux-gcc (Release) (push) Failing after 37s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 48s
linux-arm-gcc / linux-gcc-armhf (push) Failing after 1m6s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 1m23s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (push) Failing after 1m42s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 1m47s
15 lines
183 B
Makefile
15 lines
183 B
Makefile
all:
|
|
$(MAKE) -C elf
|
|
$(MAKE) -C dwarf
|
|
|
|
install:
|
|
$(MAKE) -C elf install
|
|
$(MAKE) -C dwarf install
|
|
|
|
clean:
|
|
$(MAKE) -C elf clean
|
|
$(MAKE) -C dwarf clean
|
|
|
|
check:
|
|
cd test && ./test.sh
|