#
# Makefile
#
# A Makefile for generating the 'hex' program
#
# Jonathan Pearson <celloman@gmail.com>
# August 3, 2007
#
# Copyright 2007 Jonathan Pearson
#
# This file is part of Hex.
#
# Hex is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Hex is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

PROGNAME := hex
CC := gcc
CFLAGS := -Wall -O2
LIBS :=

OBJS := hex.o


$(PROGNAME): $(OBJS) Makefile
	$(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)

$(OBJS): %.o: %.c %.dep Makefile
	$(CC) $(CFLAGS) -o $@ -c $*.c

%.dep: %.c Makefile
	$(CC) -MM $(CFLAGS) $< 2>/dev/null >$@

.PHONY: clean
clean:
	rm -f $(PROGNAME) *.o *.dep
