"Fossies" - the Fresh Open Source Software Archive

Member "mapm_4.9.5a/mklib" (21 Feb 2010, 290 Bytes) of package /linux/misc/old/mapm-4.9.5a.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 	#
    2 	# library build script for Unix based machines with GCC
    3 	#
    4 rm -f libmapm.a mapm*.o
    5 #
    6 gcc -c -Wall -O2 mapm*.c
    7 #
    8 rm mapmutil.o mapmfmul.o
    9 #
   10 #   use better optimizations for these two ....
   11 #
   12 gcc -c -Wall -O3 mapmutil.c
   13 gcc -c -Wall -O3 mapmfmul.c
   14 #
   15 ar rc libmapm.a mapm*.o
   16 #
   17 rm mapm*.o
   18 #