forked from KolibriOS/kolibrios
d22ed6d387
git-svn-id: svn://kolibrios.org@5022 a494cfbc-eb01-0410-851d-a64ba20cac60
43 lines
629 B
Makefile
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
|
|
|
|
|
|
|
|
|