#############################################################################
# Qt Makefile - Picture
#############################################################################

####### Files

SOURCES		= makepic.cpp	showpic.cpp
OBJECTS		= makepic.o	showpic.o
TARGETS		= makepic	showpic

####### Implicit rules

.SUFFIXES:
.SUFFIXES: .cpp $(SUFFIXES)

.cpp.o:
	$(CC) -c $(CFLAGS) $<

####### Build rules

all: $(TARGETS)

makepic: makepic.o
	$(CC) makepic.o -o makepic $(LFLAGS)

showpic: showpic.o
	$(CC) showpic.o -o showpic $(LFLAGS)

depend: $(SRCMETA)
	@makedepend -I$(INCDIR) $(SOURCES) 2> /dev/null

clean:
	/bin/rm -f *.o *.bak *~ *% #*
	/bin/rm -f $(TARGETS)


# DO NOT DELETE THIS LINE -- make depend depends on it.
