1
0
mirror of git://projects.qi-hardware.com/ben-scans.git synced 2024-11-22 09:30:38 +02:00
ben-scans/solidify/Makefile
2010-09-22 17:04:43 -03:00

14 lines
207 B
Makefile

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)