blob: 64ef02ccbc12a0251dd5d72df12356ad6cff4e09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
##################################################
# (c) Amlal El Mahrouss, all rights reserved.
# This file is for libSystem.dll's syscall stubs.
##################################################
ASM=nasm
FLAGS=-f win64
.PHONY: error
error:
@echo "==> Invalid rule."
@echo "==> Use libsys_asm_io_<arch> instead."
.PHONY: libsys_asm_io_x64
libsys_asm_io_x64:
$(ASM) $(FLAGS) SystemProc.asm -o SystemProc.stub.obj
|