
#CC = gcc 
INSTALL = install

CFLAGS = #-O6 #-static #-Wall -Werror  
LDFLAGS =
DEFS =

TARGETS = bcwipe
BC_OBJ = sha1.o sha1random.o


root=/


all: $(TARGETS)

bcwipe: wipe.c $(BC_OBJ)
	$(CC) $(CFLAGS) $(DEFS) -o bcwipe wipe.c $(BC_OBJ) 

install:
	$(INSTALL) -m 644 bcwipe.1      $(root)/usr/man/man1/
	$(INSTALL) -o root -m 755 -s bcwipe   $(root)/usr/bin/

clean:
	rm -f *.o *.ver *~ $(TARGETS)


#Makefile: clean
