#This file is used by the installer "setup.py" to
#create the compiler instructions for compilers on
#all platforms.
#

# project name
PROJECT = skeleton


# source files used
SOURCES = skeleton.c


#basic compiler config
INCLUDES = -IC:/src/pygame/prebuilt/include
DEFINES = -D_REENTRANT
LIBS = -LC:/src/pygame/prebuilt/lib -lSDL -lSDL_image




# that's all you need

$(PROJECT) $(SOURCES) $(INCLUDES) $(DEFINES) $(LIBS)


