https://github.com/simpcomp-team/simpcomp
Raw File
Tip revision: 022e4a1ed5efdc87415fe1f1e87bd738d7a9b2c2 authored by simpcomp on 09 March 2022, 23:56:55 UTC
Merge pull request #31 from fingolfin/mh/doc
Tip revision: 022e4a1
Makefile.am
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}

bindir = bin
bin_PROGRAMS = bistellar

bistellar_SOURCES = src/bistellar_move.cpp src/bistellar_move.h \
					src/face.cpp src/face.h src/main.cpp \
					src/movable_complex.cpp src/movable_complex.h \
					src/randomize_complex.cpp src/randomize_complex.h \
					src/reduce_complex.cpp src/reduce_complex.h \
					src/types.cpp src/types.h src/util.cpp src/util.h


all-local: bistellar
	mkdir -p bin
	cp bistellar bin/bistellar
	rm -f bistellar
	rm -f *.o
	rm -f src/*.o

back to top