summaryrefslogtreecommitdiff
path: root/3rdparty/mt19937ar/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/mt19937ar/Makefile.in')
-rw-r--r--3rdparty/mt19937ar/Makefile.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/3rdparty/mt19937ar/Makefile.in b/3rdparty/mt19937ar/Makefile.in
new file mode 100644
index 000000000..7cae3140b
--- /dev/null
+++ b/3rdparty/mt19937ar/Makefile.in
@@ -0,0 +1,24 @@
+
+MT19937AR_OBJ = mt19937ar.o
+MT19937AR_H = mt19937ar.h
+
+@SET_MAKE@
+
+#####################################################################
+.PHONY : all clean help
+
+all: $(MT19937AR_OBJ)
+
+clean:
+ rm -rf *.o
+
+help:
+ @echo "possible targets are 'all' 'clean' 'help'"
+ @echo "'all' - builds $(MT19937AR_OBJ)"
+ @echo "'clean' - deletes $(MT19937AR_OBJ)"
+ @echo "'help' - outputs this message"
+
+#####################################################################
+
+%.o: %.c $(MT19937AR_H)
+ @CC@ @CFLAGS@ @LDFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<