mirror of
https://github.com/tdeerenberg/InlineWhispers3.git
synced 2025-07-17 00:44:17 +00:00
8 lines
156 B
Makefile
8 lines
156 B
Makefile
INFILE:= main.c
|
|
OUTFILE:= main.o
|
|
CC_X64:= x86_64-w64-mingw32-gcc
|
|
OPTIONS:= -Wall -masm=intel
|
|
|
|
coff:
|
|
$(CC_X64) -c $(INFILE) -o (OUTFILE) $(OPTIONS)
|