mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 23:55:38 +00:00
42a39c52e6
Added text rendering to Renderer, which uses SDL_ttf. Using LinLibertine_R.ttf font (GPL). A lot more - soon I should have the "skeleton" done.
19 lines
490 B
Makefile
19 lines
490 B
Makefile
CC=g++
|
|
CFLAGS=-c -Wall
|
|
LDFLAGS=-lSDL -lSDL_ttf
|
|
SRCSOURCES=main.cpp Renderer.cpp Renderer_draw.cpp GuiComponent.cpp InputManager.cpp components/GuiTitleScreen.cpp components/GuiList.cpp components/GuiGameList.cpp
|
|
SOURCES=$(addprefix src/,$(SRCSOURCES))
|
|
OBJECTS=$(SOURCES:.cpp=.o)
|
|
EXECUTABLE=emulationstation
|
|
|
|
all: $(SOURCES) $(EXECUTABLE)
|
|
|
|
$(EXECUTABLE): $(OBJECTS)
|
|
$(CC) $(OBJECTS) $(LDFLAGS) -o $@
|
|
|
|
.cpp.o:
|
|
$(CC) $(CFLAGS) $< -o $@
|
|
|
|
clean:
|
|
rm -rf src/*o src/components/*o $(EXECUTABLE)
|