# $Id: makefile.sun,v 1.23 2003/01/15 05:34:22 stas_degteff Exp $
# Legacy Makefile for Solaris (i386 or sparc) and gcc.
# No support for the Husky build environment.
CC= gcc
CFLAGS= -Wall
CDEFS= -D__SUN__
#CDEFS+= -DHAS_SEMUN_UNDECL
COPT= -O3 -fomit-frame-pointer -fstrength-reduce
LIB= ar
RANLIB= ranlib
OBJ= .o
TARGET= libsmapisun.a
include makefile.inc
all: $(TARGET)
.c.o:
$(CC) $(CFLAGS) $(CDEFS) $(COPT) -c $<
$(LIB) r $(TARGET) $@
$(TARGET): $(OBJS)
$(RANLIB) $(TARGET)
clean:
-rm *.o
distclean: clean
-rm $(TARGET)
syntax highlighted by Code2HTML, v. 0.9.1