Makefile
author viric@llimona
Mon, 22 Jan 2007 00:45:57 +0100
changeset 76 9cbf4c7e7986
parent 1 73432b1eac4a
permissions -rw-r--r--
First classes for the qjpeg project.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     1
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     2
%.pnm : %.png
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     3
	pngtopnm $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     4
%.pnm : %.jpg
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     5
	jpegtopnm $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     6
%.pgm : %.pnm
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     7
	ppmtopgm -plain $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     8
%.pgm : %.ppm
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
     9
	ppmtopgm -plain $< > $@
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
    10
%.sli : %.pgm
73432b1eac4a Initial commit. The error matrix between two PGMs can be calculed.
viric@llimona
parents:
diff changeset
    11
	./pgmtosli <$< > $@