flying-balls/Makefile

38 lines
820 B
Makefile
Raw Normal View History

.PHONY: default
default: all
GTK_PACKAGES=gdk-pixbuf-2.0 gtk+-3.0
2019-06-03 10:09:00 +02:00
GTK_CFLAGS=$(shell pkg-config --cflags $(GTK_PACKAGES))
GTK_LIBS=$(shell pkg-config --libs $(GTK_PACKAGES))
# PROFILING_CFLAGS=-pg
CFLAGS=-Wall -g -O2 $(PROFILING_CFLAGS) $(GTK_CFLAGS)
2019-06-03 10:09:00 +02:00
LIBS=$(GTK_LIBS) -lm
2019-06-03 10:09:00 +02:00
PROGS=balls
OBJS=balls.o c_index.o game.o gravity.o spaceship.o main.o
# dependencies (gcc -MM *.c)
balls.o: balls.c game.h balls.h gravity.h
c_index.o: c_index.c balls.h game.h c_index.h
game.o: game.c game.h
gravity.o: gravity.c gravity.h game.h
main.o: main.c game.h balls.h c_index.h gravity.h spaceship.h
spaceship.o: spaceship.c balls.h game.h
stats.o: stats.c
2019-07-29 14:21:55 +02:00
2019-06-03 10:09:00 +02:00
.PHONY: run
run: balls
./balls
.PHONY: all
all: $(PROGS)
balls: $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
2019-06-03 10:09:00 +02:00
.PHONY: clean
clean:
rm -f *.o $(PROGS) $(OBJS)