# mag Makefile

CC=	gcc
STD=	_GNU_SOURCE
OBJS=	mag_rng01.o create_list.o set_up_list.o create_random_file.o create_crypto_random_file.o get_char_seed.o create_crypto_turn_file.o

.c.o:
	$(CC) -c -Wall $(CFLAGS) -D$(STD) $<

mag_rng01: $(OBJS)
	$(CC) $(OBJS) -o mag_rng01
	
clean:
	rm -f *.o core
	
clobber: clean
	rm -f mag_rng01
	
#End Makefile