
.PHONY:	all clean

INCLUDE =  -I../h
DEFINES =
LIBS=
CFLAGS= -pipe -Wall


OBJ =  autover

all: clean build

build: $(OBJ)
	chmod 775 $(OBJ)

autover: autover.c
	$(CC) $(DEFINES) $(INCLUDE) $(CFLAGS) $< -o $@

%.o: %.c
	$(CC) $(DEFINES) $(INCLUDE) $(CFLAGS) -c $< -o $@

clean:
	$(RM) $(OBJ)
