--- Makefile.in.orig Sun Mar 1 20:52:43 1998 +++ Makefile.in Fri Mar 31 04:11:51 2000 @@ -5,6 +5,7 @@ # Name of the program with which to compile CC=@CC@ +CFLAGS=@CFLAGS@ # Location of the directory in which menu should be installed prefix=@prefix@ @@ -27,22 +28,22 @@ xenmenu: xenmenu.o menu_func.o opt_func.o get_input.o dochoice.o rpmenu.o - $(CC) -o xenmenu xenmenu.o menu_func.o opt_func.o get_input.o \ + $(CC) $(CFLAGS) -o xenmenu xenmenu.o menu_func.o opt_func.o get_input.o \ dochoice.o rpmenu.o xenmenu.o: xenmenu.c config.h xenmenu.h menu_func.h opt_func.h get_input.h \ dochoice.h rpmenu.h - $(CC) -c xenmenu.c -o xenmenu.o + $(CC) $(CFLAGS) -c xenmenu.c -o xenmenu.o dochoice.o: dochoice.c xenmenu.h opt_func.h menu_func.h dochoice.h - $(CC) -c dochoice.c -o dochoice.o + $(CC) $(CFLAGS) -c dochoice.c -o dochoice.o get_input.o: get_input.c - $(CC) -c get_input.c -o get_input.o + $(CC) $(CFLAGS) -c get_input.c -o get_input.o menu_func.o: menu_func.c config.h xenmenu.h menu_func.h get_input.h - $(CC) -c menu_func.c -o menu_func.o + $(CC) $(CFLAGS) -c menu_func.c -o menu_func.o opt_func.o: opt_func.c opt_func.h xenmenu.h menu_func.h - $(CC) -c opt_func.c -o opt_func.o + $(CC) $(CFLAGS) -c opt_func.c -o opt_func.o rpmenu.o: rpmenu.c config.h rpmenu.h xenmenu.h menu_func.h - $(CC) -c rpmenu.c -o rpmenu.o + $(CC) $(CFLAGS) -c rpmenu.c -o rpmenu.o rpmenu.h: opt_func.h xenmenu.h: opt_func.h