## Process this file with automake to create Makefile.in # Copyright (C) 1996 Keith Whitwell. # This file may only be copied under the terms of the GNU Library General # Public License - see the file COPYING in the lib3d distribution. # Contributed by Markus F.X.J. Oberhumer AUTOMAKE_OPTIONS = no-dependencies SUFFIXES = .cc .o .s INCLUDES = -I$(top_srcdir)/include lib_LTLIBRARIES = libprimitive.la libprimitive_la_LDFLAGS = -version-info 1:0:0 libprimitive_la_SOURCES = \ cube.cc cylicone.cc sphere.cc EXTRA_DIST = LICENCE Makefile.dj2 # Not subject to autoconf control: # Rule to build assembly for your viewing pleasure. # note - make clean will remove all .s files, so change this if you # add real assembly files. .cc.s: $(CXX) -S $(CXXFLAGS) -o .tmp $< \ && c++filt < .tmp > $@ \ && rm -f .tmp