# Legacy makefile for SUN(tm) Solaris
#
# Not support for husky build enviroment (without makefile.cfg)
# Use GNU version of make

.PHONY: default

CC    = gcc
RM    = rm
EXE   =
OBJ   = .o
CFLAGS= -I../.. -DUNIX
LFLAGS= -s -L../../fidoconf -L../../smapi
LIBS  = -lfidoconfigsun -lsmapisun

.c.o: 
	$(CC) $(CFLAGS) -c $<

include makefile.inc

all: commonprogs

default: all

clean: commonclean

commondistclean: commonclean commondistclean


syntax highlighted by Code2HTML, v. 0.9.1