
# Makefile for bin2char.

CC = gcc
TARGET = hello

CFLAGS = -O3 -Wall

SHELL = /bin/sh

# This rule allows us to supply the necessary -D options
# in addition to whatever the user asks for.

all:  $(TARGET)

$(TARGET): $(TARGET).c Makefile
	${CC} ${CFLAGS} $@.c -I. -o $@

clean:
	rm -f *.o core $(TARGET)

distclean: clean
	rm -f *.c~ Makefile~
