Codebase list libsdl2-mixer / debian/latest debian / examples / Makefile
debian/latest

Tree @debian/latest (Download .tar.gz)

Makefile @debian/latestraw · history · blame

# Makefile for playmus and playwave

CC = gcc
CFLAGS = $(shell sdl2-config --cflags) -Wall -O
LIBS = $(shell sdl2-config --libs) -lSDL2_mixer
EXE = playmus playwave

all: $(EXE)

playmus: playmus.c Makefile
	$(CC) -o $@ $@.c $(CFLAGS) $(LIBS)

playwave: playwave.c Makefile
	$(CC) -o $@ $@.c $(CFLAGS) $(LIBS)

clean:
	-rm *.o $(EXE)