# The permissions to give the executables
INSTALLPERMS = 0700

# You will need to use a ANSI C compiler. This means under SunOS 4 you can't 
# use cc, instead you will have to use gcc. 
# CC = gcc

# This may help with some versions of make
SHELL = /bin/sh

################################################

linux: 
	@echo Compiling Syndrome for Linux...
	@$(CC) -o syndrome syndrome.c -lcrypt -DUSE_SHADOW
	@chmod 0700 syndrome
	@echo Done!

bsd:
	@echo Compiling Syndrome for BSD...
	@$(CC) -o syndrome syndrome.c
	@chmod 0700 syndrome
	@echo Done!

clean:
	@rm -f core *.core syndrome

