CC=gcc
CFLAGS=-I.
DEPS = targa.h

%.o: %.c $(DEPS)
	$(CC) -c -o $@ $< $(CFLAGS)

pleasewait: pleasewait.o targa.o 
	$(CC) -o pleasewait targa.o pleasewait.o

clean:
	rm -f pleasewait
	rm -f *.o

install:
	cp bittewarten.tga ..
	cp pleasewait ..

