########################################################## # # Makefile for IGlib with gcc and linux # # (C)Microform AB 1999-02-15 J.Kjellander # ########################################################## RM = rm -f CC = gcc distr : CFLAGS = \ -ansi \ -pedantic \ -Wall \ -ffloat-store \ -fsigned-char \ -fwritable-strings \ -O \ -DUNIX \ -DV3_X11 \ -DWRK_STAT debug : CFLAGS = \ -ansi \ -Wall \ -ffloat-store \ -fsigned-char \ -fwritable-strings \ -m486 \ -g \ -DDEBUG \ -DUNIX \ -DV3_X11 \ -DWRK_STAT COMPILE = $(CC) -c $(CFLAGS) include Makefile.IG ##########################################################