rulimine/Makefile

93 lines
2.5 KiB
Makefile
Raw Normal View History

DESTDIR =
PREFIX = /usr/local
2020-07-06 23:59:28 +03:00
OS := $(shell uname)
2020-09-13 15:36:18 +03:00
CC = cc
OBJCOPY = objcopy
CFLAGS = -O2 -pipe -Wall -Wextra
2020-07-06 23:59:28 +03:00
.PHONY: all install clean echfs-test ext2-test test.img
2019-05-15 07:08:56 +03:00
all: limine-install
install: all
install -s limine-install $(DESTDIR)$(PREFIX)/bin/
2019-05-15 07:08:56 +03:00
clean:
rm -f limine-install
$(MAKE) -C src clean
2020-03-25 01:39:02 +03:00
src/limine.bin:
$(MAKE) -C src all
limine-install: src/limine.bin limine-install.c
2020-09-13 15:36:18 +03:00
$(OBJCOPY) -I binary -O default src/limine.bin limine.o
$(CC) $(CFLAGS) limine.o limine-install.c -o limine-install
2020-08-29 21:02:16 +03:00
2020-07-06 23:59:28 +03:00
test.img:
2020-03-25 03:04:18 +03:00
rm -f test.img
dd if=/dev/zero bs=1M count=0 seek=64 of=test.img
2020-07-06 23:59:28 +03:00
ifeq ($(OS), Linux)
parted -s test.img mklabel msdos
parted -s test.img mkpart primary 2048s 100%
2020-07-06 23:59:28 +03:00
else ifeq ($(OS), FreeBSD)
sudo mdconfig -a -t vnode -f test.img -u md9
sudo gpart create -s mbr md9
sudo gpart add -a 4k -t '!14' md9
sudo mdconfig -d -u md9
endif
echfs-test: limine-install test.img
$(MAKE) -C test
echfs-utils -m -p0 test.img quick-format 512
2020-07-06 23:59:28 +03:00
echfs-utils -m -p0 test.img import test/test.elf boot/test.elf
2020-08-29 21:02:16 +03:00
echfs-utils -m -p0 test.img import test/limine.cfg limine.cfg
./limine-install test.img
qemu-system-x86_64 -hda test.img -debugcon stdio -enable-kvm
2020-05-01 18:19:29 +03:00
ext2-test: limine-install test.img
2020-05-01 18:19:29 +03:00
$(MAKE) -C test
2020-07-06 23:59:28 +03:00
rm -rf test_image/
2020-05-01 18:19:29 +03:00
mkdir test_image
sudo losetup -Pf --show test.img > loopback_dev
sudo partprobe `cat loopback_dev`
2020-07-06 23:59:28 +03:00
sudo mkfs.ext2 `cat loopback_dev`p1
sudo mount `cat loopback_dev`p1 test_image
2020-05-01 18:19:29 +03:00
sudo mkdir test_image/boot
sudo cp test/test.elf test_image/boot/
2020-08-29 21:02:16 +03:00
sudo cp test/limine.cfg test_image/
2020-05-01 18:19:29 +03:00
sync
sudo umount test_image/
sudo losetup -d `cat loopback_dev`
rm -rf test_image loopback_dev
./limine-install test.img
qemu-system-x86_64 -hda test.img -debugcon stdio
fat32-test: limine-install test.img
$(MAKE) -C test
2020-07-06 23:59:28 +03:00
rm -rf test_image/
mkdir test_image
2020-07-06 23:59:28 +03:00
ifeq ($(OS), Linux)
sudo losetup -Pf --show test.img > loopback_dev
sudo partprobe `cat loopback_dev`
2020-07-06 23:59:28 +03:00
sudo mkfs.fat -F 32 `cat loopback_dev`p1
sudo mount `cat loopback_dev`p1 test_image
else ifeq ($(OS), FreeBSD)
sudo mdconfig -a -t vnode -f test.img -u md9
sudo newfs_msdos -F 32 /dev/md9s1
sudo mount -t msdosfs /dev/md9s1 test_image
endif
sudo mkdir test_image/boot
sudo cp test/test.elf test_image/boot/
2020-08-29 21:02:16 +03:00
sudo cp test/limine.cfg test_image/
sync
sudo umount test_image/
2020-07-06 23:59:28 +03:00
ifeq ($(OS), Linux)
sudo losetup -d `cat loopback_dev`
2020-07-06 23:59:28 +03:00
else ifeq ($(OS), FreeBSD)
sudo mdconfig -d -u md9
endif
rm -rf test_image loopback_dev
./limine-install test.img
qemu-system-x86_64 -hda test.img -debugcon stdio