blob: 8314a105843705cf1fffba5ccf87da63fd36a487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
include ../../../../support/include.mk
# Ermacs includes
ERLC_FLAGS += -I ../../.. -pa ../../ebin
all: $(ERL_OBJECTS)
$(ERL_OBJECTS): ../../include/edit.hrl
clean:
-rm -f $(ERL_OBJECTS)
|