kolibrios/contrib/sdk/sources/render/Makefile
Sergey Semyonov (Serge) d22ed6d387 sdk: update Makefiles && libsound
git-svn-id: svn://kolibrios.org@5022 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-08-07 11:48:01 +00:00

43 lines
629 B
Makefile

LIBRARY= librender
CC=gcc
CFLAGS = -U_Win32 -U_WIN32 -U__MINGW32__ -c -O2 -fno-ident -fomit-frame-pointer
AR= ar
INCLUDES= -I. -I../newlib/libc/include -I../Mesa/include -I../libdrm/include/drm
LIBPATH:= -L../../lib
DEFINES= -D__unix__ -DMESA_EGL_NO_X11_HEADERS
SOURCES = render.c \
blit.c \
swap.c
OBJECTS = $(patsubst %.c, %.o, $(SOURCES))
# targets
all:$(LIBRARY).a
$(LIBRARY).a: $(OBJECTS) Makefile
ar cvrs $(LIBRARY).a $(OBJECTS)
mv -f $(LIBRARY).a ../../lib
%.o : %.c Makefile
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $<
clean:
-rm -f *.o