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

# project name
PROJECT = heidigfx


# source files used
SOURCES = src/heidigfx.c src/heidi.c 

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

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


