# $Id: Makeconfig,v 1.1.1.1 1998/01/06 20:51:07 ewt Exp $ SBINDIR = $(ROOT)/sbin MANDIR = $(ROOT)/usr/man CC = gcc CXX = g++ CFLAGS = -O2 -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 $@ $<