1
2
3all: start.o
4
5ifeq ($(ARCH), __x86_64__)
6start.o:
7	$(CC) $(CFLAGS) -c elf/start.c -o elf/start.o
8endif
9
10clean:
11
12	echo "Done."