]> git.sesse.net Git - ccbs/blobdiff - bigscreen/Makefile
Shape text using Pango and HarfBuzz; gives us nice ligatures and exotic scripts.
[ccbs] / bigscreen / Makefile
index 00a8e92cb949470a5c50998daaf2ef6660cdfbe4..fe010eef26f8cf5b292a9a1da51c77c860ffabc1 100644 (file)
@@ -1,21 +1,25 @@
 CC=gcc
 CXX=g++
-CPPFLAGS=-I/usr/include/postgresql $(shell freetype-config --cflags) -Itinyptc/
-CXXFLAGS=-g -Wall
+CPPFLAGS=-I/usr/include/postgresql $(shell freetype-config --cflags) $(shell sdl-config --cflags) $(shell pkg-config harfbuzz-icu --cflags) $(shell pkg-config pango --cflags) $(shell pkg-config pangoft2 --cflags)
+CXXFLAGS=-O2 -Wall -g
 LDFLAGS=-L/usr/X11R6/lib
-LIBS=$(shell freetype-config --libs) $(shell libpq3-config) -lpqxx tinyptc/libtinyptc.a -lX11
-CCBS_BIGSCREEN_OBJS=ccbs_bigscreen.o flagtrigger.o widestring.o fetch_current_tournament.o
+LIBS=$(shell freetype-config --libs) -lpqxx $(shell sdl-config --libs) $(shell pkg-config harfbuzz-icu --libs) $(shell pkg-config pango --libs) $(shell pkg-config pangoft2 --libs)
 
-all: ccbs-bigscreen
+CCBS_BIGSCREEN_SQL_OBJS=fetch_current_tournament.o fetch_list_of_active_groups.o \
+       fetch_list_of_finished_groups.o \
+       fetch_max_score_for_songs.o fetch_max_score_for_players.o fetch_group.o \
+       fetch_needs_update.o fetch_highscore.o fetch_top_scores_for_tournament.o \
+       fetch_top_chosen_songs_for_tournament.o fetch_auxilliary_screens.o
+CCBS_BIGSCREEN_SCREEN_OBJS=groupscreen.o top10scorescreen.o top5chosenscreen.o splitscreen.o rotatescreen.o screen.o
+CCBS_BIGSCREEN_MAIN_OBJS=ccbs_bigscreen.o flagtrigger.o widestring.o fonts.o theme.o
+CCBS_BIGSCREEN_OBJS=$(CCBS_BIGSCREEN_SQL_OBJS) $(CCBS_BIGSCREEN_SCREEN_OBJS) $(CCBS_BIGSCREEN_MAIN_OBJS)
 
-tinyptc/libtinyptc.a:
-       $(MAKE) -C tinyptc
+all: ccbs-bigscreen
 
-ccbs-bigscreen: $(CCBS_BIGSCREEN_OBJS) tinyptc/libtinyptc.a
+ccbs-bigscreen: $(CCBS_BIGSCREEN_OBJS)
        $(CXX) -o ccbs-bigscreen $(CCBS_BIGSCREEN_OBJS) $(LDFLAGS) $(LIBS)
 
 clean:
        $(RM) $(CCBS_BIGSCREEN_OBJS) ccbs-bigscreen
-       $(MAKE) -C tinyptc clean
 
 .PHONY: clean