GNUmakefile - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       GNUmakefile (674B)
       ---
            1 # Main GNUmakefile for VX32 source tree.
            2 #
            3 # To make it more convenient to change the makefile system
            4 # without having to re-autoconf all the time,
            5 # ALL configure script substitutions for the whole build system
            6 # are concentrated in this file alone.
            7 # This file simply establishes the appropriate substituted symbol names
            8 # and then includes the top-level makefile fragment, './Makefrag'.
            9 
           10 top_srcdir        = .
           11 top_builddir        = .
           12 
           13 prefix                = /usr/local
           14 exec_prefix        = ${prefix}
           15 INCDIR                = ${prefix}/include
           16 BINDIR                = ${exec_prefix}/bin
           17 LIBDIR                = ${exec_prefix}/lib
           18 
           19 CC                = gcc
           20 LD                = ld
           21 AR                = ar
           22 
           23 OS := $(shell uname |tr A-Z a-z)
           24 #ARCH := $(shell uname -m)
           25 ARCH=i386
           26 
           27 include Makefrag
           28