#####################################################################
#
#    Copyright 1993 Jeremy Slade.
#
#    You are free to use all or any parts of the LogHook project
#    however you wish, just give credit where credit is due.
#    The author (Jeremy Slade) shall not be held responsible
#    for any damages that result out of use or misuse of any
#    part of this project.
#
#
#    Project: Bypass
#
#    File: Makefile
#
#    Description: Makefile to build the Bypass executable
#
#    Original Author: Jeremy Slade
#
#    Revision History:
#        Created
#            JGS Sat Apr 10 15:04:13 MDT 1993
#
#####################################################################

CFLAGS = -g -Wall -ObjC

Bypass: Bypass_main.o BypassController.o
	$(CC) $(CFLAGS) Bypass_main.o BypassController.o -o Bypass -lNeXT_s
	
Bypass_main.o: Bypass_main.m
	$(CC) $(CFLAGS) -c Bypass_main.m -o Bypass_main.o

BypassController.o: BypassController.h BypassController.m
	$(CC) $(CFLAGS) -c BypassController.m -o BypassController.o
