home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 6
/
AACD06.ISO
/
AACD
/
Graphics
/
Anim2gif-GUI
/
WhirlGif
/
src.original
/
Makefile
next >
Wrap
Makefile
|
1996-11-01
|
639b
|
41 lines
# Makefile for whirlgif utility
#####################################
# Choose your favorite compiler.
#
# GNU C
CC = gcc
#
# standard
#CC = cc
#####################################
# Optimization flags
#
# GNU C
#OPTIMIZE= -fcombine-regs -O
# standard
OPTIMIZE = -O
#####################################
# Debug flags
#
#DEBUG = -g
#DEBUG = -ggdb
#####################################
# CFLAGS
# If you need <strings.h>, add -DUSE_STRINGS_H
#
CFLAGS = $(DEBUG) $(OPTIMIZE)
all: whirlgif
whirlgif:
$(CC) $(CFLAGS) -o whirlgif whirlgif.c
# DO NOT DELETE THIS LINE AND DEPENDECIES BELOW
whirlgif: whirlgif.h
whirlgif: whirlgif.c