blob: cd1db4128181bb6735dd2f528b4935a2acc71677 (
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
|
all: grub grub-dev multiboot multiboot2
grub:
$(MAKE) -f grub-Makefile
grub-dev:
$(MAKE) -f grub-dev-Makefile
multiboot:
$(MAKE) -f multiboot-Makefile
multiboot2:
$(MAKE) -f multiboot2-Makefile
.PHONY: clean
clean:
$(MAKE) clean -f grub-Makefile
$(MAKE) clean -f grub-dev-Makefile
$(MAKE) clean -f multiboot-Makefile
$(MAKE) clean -f multiboot2-Makefile
.PHONY: dist-clean
dist-clean: clean
rm -rf tmp
|