# Set to your favorite C compiler and flags
CC=gcc
CFLAGS=-s -O2 -Wall -pedantic

# End of settable values

smtpauth:
	$(CC) $(CFLAGS) -o smtpauth smtpauth.c

all:	smtpauth

clean:
	rm -f smtpauth *.o

