File: Makefile

package info (click to toggle)
png2html 1.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 84 kB
  • ctags: 8
  • sloc: ansic: 119; makefile: 57
file content (17 lines) | stat: -rw-r--r-- 265 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Makefile for png2html, (c) 1999 Geoff Holden

CC      = gcc
CFLAGS  = -O2 -Wall -lpng -lgd

all:    png2html

png2html:
	$(CC) -o png2html png2html.c $(CFLAGS)


clean:
	rm -f *~ png2html
#Edited for Debian package

install: 
	install -m 0755 png2html $(DESTDIR)