20 lines
236 B
Makefile
20 lines
236 B
Makefile
|
.PHONY: all
|
||
|
.SUFFIXES: .erl .beam
|
||
|
|
||
|
ERLC?= erlc -server
|
||
|
|
||
|
ERLOPTS+= -I ../include
|
||
|
|
||
|
|
||
|
OBJS= storage.beam storage_app.beam
|
||
|
OBJS+= storage_supervisor.beam
|
||
|
|
||
|
all: ${OBJS}
|
||
|
|
||
|
.erl.beam:
|
||
|
${ERLC} ${ERLOPTS} ${ERLFLAGS} $<
|
||
|
|
||
|
clean:
|
||
|
rm -f *.beam
|
||
|
|