#------------------------------------------------------------------#
# Makefile for ifchk.                                              #
#                                                                  #
# Please read INSTALL.IRIX or INSTALL.Linux before building ifchk. #
#                                                                  #
# If you are building for IRIX, uncomment the CC, CFLAGS and OBJS  #
# environment variables in the comment block below marked "IRIX".  #
# No further changes should be made.                               #
#                                                                  #
# If you are building for Linux, uncomment the CC, CFLAGS and OBJS #
# environment variables in the comment block below marked "Linux". #
# No further changes should be made.                               #
#                                                                  #
# Manual compilation is also an option.                            #
#                                                                  #
# Copyright (C) 2002 - 2005 Joshua Birnbaum <engineer@noorg.org>.  #
# All Rights Reserved.                                             #
#------------------------------------------------------------------#

#
# IRIX
#
#CC=gcc
#CFLAGS=-mips3 -g
#OBJS=ifchk.o irix.o log.o

#
# Linux
#
#CC=gcc
#CFLAGS=-g
#OBJS=ifchk.o linux.o log.o

all:	$(OBJS)
	$(CC) $(CFLAGS) -o ifchk $(OBJS)

clean:
	rm -f *.o ifchk
