21 lines
514 B
Makefile
21 lines
514 B
Makefile
|
|
# Process this file with automake
|
||
|
|
CFLAGS = -g -O2 -Wall
|
||
|
|
CC = gcc
|
||
|
|
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||
|
|
|
||
|
|
EXTRA_DIST = README
|
||
|
|
|
||
|
|
## This is removed because icm relies upon the existance of all other
|
||
|
|
## libs. It is currently compiled manually, last.
|
||
|
|
##SUBDIRS = mif cm enh evt ipc idn icm
|
||
|
|
|
||
|
|
SUBDIRS = mif cm enh evt ipc idn cmpp
|
||
|
|
|
||
|
|
INCLUDES = -I$(top_srcdir)/src/include -I$(top_srcdir)
|
||
|
|
|
||
|
|
MAINTAINERCLEANFILES = Makefile.in
|
||
|
|
|
||
|
|
all: xspice.o
|
||
|
|
xspice.o:
|
||
|
|
$(COMPILE) -c xspice.c
|