mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-01-21 01:48:25 +00:00
21 lines
231 B
Makefile
21 lines
231 B
Makefile
# Windows compiled on a Linux machine with mingw
|
|
|
|
TARGET = _win32
|
|
TARGETEXTENSION = .exe
|
|
|
|
|
|
|
|
CC = /usr/bin/i586-mingw32msvc-gcc
|
|
CCOUT = -o
|
|
COPTS = -c -O2
|
|
|
|
LD = $(CC)
|
|
LDOUT = $(CCOUT)
|
|
LDFLAGS = -lm
|
|
|
|
RM = rm -f
|
|
|
|
|
|
|
|
include make.rules
|