GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: My environmental monitoring stuff for the house.
Clone URL: git://github.com/dustin/environ.git
dustin (author)
Mon Jun 25 11:34:03 -0700 2007
commit  e3bd5483125548fef0f56a767736db0197f2bb81
tree    49659a5d177dffb700f1c407f7b29c4c4136a46c
parent  af820333e34cc3b6a7fb3f94d43e8e93a1f67935
environ / Makefile
100644 24 lines (15 sloc) 0.447 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SHELL=/bin/sh
 
EFLAGS=-pa $(HOME)/lib/erlang/smtp_client-1.1/ebin/ -pa ebin
 
.PHONY: tgz
 
all: environ.boot
 
tgz: environ.tar.gz
 
ebins:
  erl $(EFLAGS) -noshell -run make all -run init stop
  cp src/*.app ebin
 
environ.boot: ebins environ.rel
  erlc -W -v $(EFLAGS) environ.rel
 
environ.tar.gz: environ.boot
  erl $(EFLAGS) -noshell -run systools make_tar environ -run init stop
 
clean:
  rm -f environ.{beam,boot,script} environ.tar.gz
  rm -f ebin/*