
CFLAGS=-Wall -g -I.
LDFLAGS=-ljpeg

APPS=jpegtest

all: $(APPS)

jpegtest: jpegtest.o jpeginput.o

clean:
	rm -f $(APPS)


