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

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

all: $(TARGET)

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