home *** CD-ROM | disk | FTP | other *** search
- # $Id: Makeconfig,v 1.2 1998/10/08 19:49:24 ewt Exp $
-
- SBINDIR = $(ROOT)/sbin
- MANDIR = $(ROOT)/usr/man
-
- CC = egcs
- CXX = g++
- CFLAGS = -O -Wall
- LDFLAGS =
- DEFS = -I../include -D_GNU_SOURCE
-
- # Uncomment this on an alpha using binutils < 2.7.0.9.
- # DEFS += -DAXP_BROKEN_GAS
-
- # Uncomment this if you want to create a combined insmod/rmmod binary
- COMBINE_INSMOD_RMMOD = y
-
- RANLIB = ranlib
- INSTALL = install
-
- ARCH = $(shell uname -m | sed s/i.86/i386/)
-
- #----------------------------------------------------------------------
-
- %.o: %.c
- $(CC) $(CFLAGS) $(DEFS) -c -o $@ $<
-
- %.o: %.cc
- $(CXX) $(CFLAGS) $(DEFS) -c -o $@ $<
-