mirror of
https://github.com/Tiiffi/mcrcon.git
synced 2025-10-27 11:21:07 -04:00
9 lines
206 B
Makefile
9 lines
206 B
Makefile
# Cross comple, eg.
|
|
# export PATH=$PATH:/path/to/compiler/bin
|
|
# export CROSS_COMPILE=arm-none-linux-gnueabi-
|
|
# make
|
|
|
|
all:
|
|
$(CROSS_COMPILE)gcc -std=gnu99 -pedantic -Wall -Wextra -O2 -s -o mcrcon mcrcon.c
|
|
|