15 lines
217 B
Makefile
15 lines
217 B
Makefile
CC=gcc
|
|
CFLAGS=-I.
|
|
DEPS = -lopengl32 -lglu32 -lgdi32
|
|
OUTPUT = szescian.exe
|
|
|
|
default:
|
|
$(CC) -g *.c $(DEPS) -static -o $(OUTPUT)
|
|
cp /usr/bin/msys-2.0.dll .
|
|
|
|
run: default
|
|
./$(OUTPUT)
|
|
|
|
clean:
|
|
rm $(OUTPUT) msys-2.0.dll
|