# Make file for bot_read_funcs.c # ORIGINALLY WRITTEN BY: Michael Main (main@colorado.edu), Jan 11, 1997 # MODIFIED BY: Chip Yeakey, April/2002 # # This makefile is used to regenerate binary for the bot_read program: # make bot_read -- Regenerates the executable shell file by compiling # make -- Same as "make shell" # # Two special targets may also be used with this makefile: # make all -- Regenerates all files listed above # make clean -- Erases all files listed above # # All compilations occur with -Wall and -gstabs+. # The clean command uses rm to remove all expendable files EXPENDABLES = bot_read bot_read: bot_read_funcs.c gcc -lm -Wall -gstabs+ bot_read_funcs.c -o bot_read clean: rm -f $(EXPENDABLES) all: rm -f $(EXPENDABLES) @make $(EXPENDABLES)