blob: 13d7e9193c2bbf80173ed653e021cb076bdc8ab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ident "$Id$"
## -----------------------------------------------------------------------
##
## Copyright 2001 Transmeta Corporation - All Rights Reserved
##
## This source module contains confidential and proprietary information
## of Transmeta Corporation. It is not to be disclosed or used except
## in accordance with applicable agreements. This copyright notice does
## not evidence any actual or intended publication of such source code.
##
## -----------------------------------------------------------------------
##
## Makefile for pngtoico
##
CC = gcc -W -Wall
CFLAGS = -O2 -fomit-frame-pointer
LDFLAGS = -s
LIBS = -lpng
all: pngtoico
clean:
rm -f pngtoico
distclean spotless: clean
rm -f *~ \#*
pngtoico: pngtoico.c
$(CC) $(CFLAGS) $(LDFLAGS) -o pngtoico pngtoico.c $(LIBS)
|