##-*- makefile -*-############################################################
#
#  System        : 
#  Module        : 
#  Object Name   : $RCSfile$
#  Revision      : $Revision$
#  Date          : $Date$
#  Author        : $Author$
#  Created By    : Jonathan Bayer
#  Created       : Sat Feb 27 06:49:13 2010
#  Last Modified : <100227.0650>
#
#  Description	
#
#  Notes
#
#  History
#	
#  $Log$
#
##############################################################################
#
#  Copyright (c) 2010 Jonathan Bayer.
# 
#  All Rights Reserved.
# 
#  This  document  may  not, in  whole  or in  part, be  copied,  photocopied,
#  reproduced,  translated,  or  reduced to any  electronic  medium or machine
#  readable form without prior written consent from Jonathan Bayer.
#
##############################################################################


# Macros

CC = gcc
CFLAGS = -g
LIBS = -lpam -lpam_misc
SRC=check_user.c
OBJ=check_user.o
EXECUTABLE=check_user

# Explicit rule

hist: $(OBJ)
	$(CC) $(CFLAGS) -o $(EXECUTABLE) $(OBJ) $(LIBS)


