# Kallistios - txt2bin Makefile
# 
# (c)2002, Paul Boese
#
# $Id: Makefile,v 1.1 2002/02/23 05:20:36 axlen Exp $

CC = gcc -Wall

all:
	$(CC) -o txt2bin txt2bin.c

clean:
	@rm txt2bin *.bin
