#####################################################################
#
#    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: LogHook
#
#    File: Makefile
#
#    Description: Makefile to build the LogHook executables
#
#    Original Author: Jeremy Slade
#
#    Revision History:
#        Created
#            JGS Tue May 11 20:53:26 PDT 1993
#
#####################################################################

CFLAGS = -g -Wall -ObjC

LogHook: LoginHook.m LogoutHook.m
	$(CC) $(CFLAGS) LoginHook.m -o LoginHook
	$(CC) $(CFLAGS) LogoutHook.m -o LogoutHook
	
	
	