# Copyright (C) 1998 Guido Flohr <gufl0000@stud.uni-sb.de>.
# This Makefile is free software; the author gives unlimited permission 
# to copy, distribute and modify it.

# $Header$

CC = gcc
AR = ar
RANLIB = ranlib

DEFS = 
INCLUDES = -I. -I.. -I../.. -I../../src
CFLAGS = -Wall -fomit-frame-pointer -fno-defer-pop -O3
LDFLAGS = 

COMPILE = $(CC) $(DEFS) $(CFLAGS) $(INCLUDES)

tzinit_OBJECTS = tzinit.o

default: all

all: tzinit

tzinit: tzinit.o
	$(CC) $(LDFLAGS) -o tzinit tzinit.o

.SUFFIXES:
.SUFFIXES: .c .o

.c.o:
	$(COMPILE) -c $<

