Commit a1633ca8 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

delete fnordmetric code

parent e95f046a
Loading
Loading
Loading
Loading

fnordmetric-core/Makefile

deleted100644 → 0
+0 −25
Original line number Diff line number Diff line
# This file is part of the "FnordMetric" project
#   Copyright (c) 2014 Paul Asmuth, Google Inc.
#
# Licensed under the MIT license (see LICENSE).

all: build

build:
	(cd build/cmake && make)

install: build
	(cd build/cmake && make install)

devserver: build
	mkdir -p /tmp/fnordmetric-data
	DEV_ASSET_PATH=./build/assets ./build/cmake/target/fnordmetric-server --datadir /tmp/fnordmetric-data --verbose

test:
	(cd build/cmake && make test)

clean:
	(cd build/cmake && make clean)
	rm -rf build/test/tmp*

.PHONY: all test clean build devserver

fnordmetric-core/autogen.sh

deleted100755 → 0
+0 −7
Original line number Diff line number Diff line
#!/bin/bash
if [[ "$1" == "clean" ]]; then
  make clean
  exit 0
fi

make all

fnordmetric-core/build/.gitignore

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
libfnordmetric-static.a
libfnordmetric.dylib
libfnordmetric.so
+0 −1
Original line number Diff line number Diff line
../../../libfnord/webui
 No newline at end of file
+0 −1
Original line number Diff line number Diff line
../../../fnordmetric-webui
 No newline at end of file
Loading