/usr/share/doc/libsdl-ttf2.0-dev/examples/Makefile is in libsdl-ttf2.0-dev 2.0.11-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Makefile for showfont
CC = gcc
CFLAGS = -Wall -O
LIBS = -I/usr/include/SDL -lSDL_ttf
EXE = showfont glfont
all: $(EXE)
showfont: showfont.c Makefile
$(CC) -o $@ $@.c $(CFLAGS) $(LIBS)
glfont: glfont.c Makefile
$(CC) -o $@ $@.c $(CFLAGS) $(LIBS)
clean:
-rm *.o $(EXE)
|