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

TARGET=	$(BIN)/mgltest.exe
OBJS=	mgltest.o ../../crt0.o
LIBS=	$(LIB)/mgl.lib $(LIB)/libc.lib $(LIB)/libsys.lib

all: $(TARGET)

$(TARGET): $(OBJS) $(LIBS)
	ld -o $(TARGET) $(OBJS) $(LIBS)

include $(OBJS:.o=.d)