Codebase list libsdl2-mixer / 88aabe6b-82be-4b0d-b2c1-ed562b07805f/main debian / examples / Makefile
88aabe6b-82be-4b0d-b2c1-ed562b07805f/main

Tree @88aabe6b-82be-4b0d-b2c1-ed562b07805f/main (Download .tar.gz)

Makefile @88aabe6b-82be-4b0d-b2c1-ed562b07805f/mainraw · 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)