diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-01-01 03:40:54 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-01-01 03:40:54 +0000 |
commit | a23b06770d509f6b54b86dbdd97dc3c9e6a1c7ea (patch) | |
tree | be76fea2ded5027c2a8ee72517a7a375a0db7a62 /Makefile | |
download | pngtoico-a23b06770d509f6b54b86dbdd97dc3c9e6a1c7ea.tar.gz pngtoico-a23b06770d509f6b54b86dbdd97dc3c9e6a1c7ea.tar.xz pngtoico-a23b06770d509f6b54b86dbdd97dc3c9e6a1c7ea.zip |
PNG to ICO icon converter
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13d7e91 --- /dev/null +++ b/Makefile @@ -0,0 +1,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) + |