What's the output of
cat -vet Makefile
?
Output of "cat -vet Makefile" looks something like this:
./Makefile contents:
^M^M$
#include ../../support/subdir.mk^M^M$
APP_NAME=lama^M^M$
all:^M^I(cd src;$(MAKE))^M#; $(MAKE) -C src^M$
^Mclean:^M^I(cd src;$(MAKE) clean)^M^M$
release:^Iclean appfile^M^Ish ../../support/create_release.sh^M^M$
appfile:^M^I(cd src;$(MAKE) ../ebin/$(APP_NAME).app)^M^M$
docs:^M^Ierl -noshell -run edoc_run application "'$(APP_NAME)'" \^M '"."' '[{def,{vsn,"$(VSN)"}}]' -s init stop^M$
./src/Makefile contents:
^M^M$
include ../vsn.mk^M^M$
#include ../../../support/include.mk^M^M$
ERLC_FLAGS += -I../include^M^M$
ERL_OBJECTS += $(EBIN_DIR)/lama.app^M^M$
all: $(ERL_OBJECTS)^M^M$
clean:^M^I-rm $(ERL_OBJECTS)^M$