# Makefile for LinuxTaRT 2.20
# Generated by hand (Mark Veinot, 1999)

# Uncomment the following to statically link TaRT
#CFLAGS += -static

# Uncomment the following to enable Internet TimeBeats
#CFLAGS += -DIBEATS

# Uncomment the following line to turn off ANSI color
#CFLAGS += -DNOCOLOR

# Comment the following line out if you don't have /proc
CFLAGS += -DPROC

CFLAGS += -Wall -pedantic -O3
CC = gcc
OBJECTS = main.o stringutil.o tartutil.o riscos.o ibeat.o IniFile.o

.PHONY: all clean install

all: 	tart

tart:	$(OBJECTS)
	$(CC) $(CFLAGS) -o TaRT $(OBJECTS)

clean:
	rm -f $(OBJECTS) TaRT

install:
	install -m 0755 -s TaRT /usr/local/bin/TaRT
