#
# Torch user Makefile example
#

# Torch location.
# Make sure to specify correct location...

#TORCHDIR := $(shell cd ../..; pwd)

#
# All that follows you can probably keep as is...
#

#OS := $(shell uname -s)
include Makefile_options_Debian

%: %.cc
	$(CC) $(CFLAGS_$(MODE)) -ltorch $< -o $@ 
