1
0
mirror of git://projects.qi-hardware.com/ben-scans.git synced 2024-11-22 15:10:38 +02:00
ben-scans/solidify/Makefile

14 lines
207 B
Makefile
Raw Normal View History

CFLAGS=-Wall -g `pkg-config --cflags gtk+-2.0`
LDFLAGS=-lm `pkg-config --libs gtk+-2.0`
OBJS=array.o face.o level.o solidify.o
.PHONY: all clean
all: solidify
solidify: $(OBJS)
clean:
rm -f $(OBJS)