mirror of
https://github.com/reactos/reactos.git
synced 2026-07-02 23:24:21 +08:00
8 lines
162 B
Makefile
8 lines
162 B
Makefile
all: test.bin
|
|
|
|
test.bin: test.o
|
|
$(LD) -Ttext 0x10000 test.o ../../lib/ntdll/ntdll.a -o test.exe
|
|
$(OBJCOPY) -O binary test.exe test.bin
|
|
|
|
include ../../rules.mak
|