# Makefile for the SCM device class driver # Copyright (C) 1997-2000 SpellCaster Telecommunications Inc. # $Id: Makefile.in,v 1.1 2004/03/11 03:59:31 bcrl Exp $ # Released under the GNU Public License. See LICENSE file for details. TOPDIR=../.. CC = gcc OBJS = init.o message.o irq.o proc.o cdev.o io.o call.o mvip_if.o CFLAGS = -O2 -Wall -I../../include -DDEBUG all: $(OBJS) scmctrl scmd ld -r -o scm.o $(OBJS) scmd: scmd.c gcc -Wall -g -o scmd scmd.c scmctrl: scmctrl.o $(CC) $(CFLAGS) -o scmctrl scmctrl.o clean: rm -f $(OBJS) scmctrl.o scmctrl scm.o scmd install: all