10 lines
217 B
Makefile
10 lines
217 B
Makefile
LIBS= -lSDL -lpthread -L/usr/X11R6/lib -L/usr/lib -lm -lGL -lX11
|
|
CFLAGS= -Wall -g -I/usr/include/ -I/usr/include/SDL/ -I/usr/X11R6/include/
|
|
CC=gcc
|
|
RM=rm -rf
|
|
|
|
RESULT=game
|
|
BUILDDIR=build-linux
|
|
|
|
include Makefile.common
|