Newer
Older
Scratch / mobius / src / init / Makefile
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 229 bytes Scratch
include ../make.actions

TARGET=	$(BIN)/init.exe
OBJS=	init.o init.res.o
LIBS=	$(LIB)/kernelu.lib $(LIB)/libc.lib

all: $(TARGET)

$(TARGET): $(OBJS)
	ld -o $(TARGET) --subsystem native --image-base 0x40000000 \
		$(OBJS) $(LIBS)