Makefile
author viric@mandarina
Fri, 12 Dec 2008 16:07:09 +0000
changeset 251 4aa28098b2c2
parent 1 73432b1eac4a
permissions -rw-r--r--
Arreglo un greu problema al cĂ lcul de la PSNR (girava files i columnes)
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 <$< > $@