summaryrefslogtreecommitdiffstats
path: root/commandline/Makefile
diff options
context:
space:
mode:
authorcpldcpu <cpldcpu@gmail.com>2013-12-30 12:58:47 +0100
committercpldcpu <cpldcpu@gmail.com>2013-12-30 12:58:47 +0100
commit2e067963c4b8d0285a3f70b71d2b438c66c2e40c (patch)
treec85b5242bc1de816b349b458568f890aa00ded6f /commandline/Makefile
parent7f1acb2ebd7cb8c309680af437ea8bb1ca48e4d8 (diff)
downloadmicronucleus-2e067963c4b8d0285a3f70b71d2b438c66c2e40c.tar.gz
micronucleus-2e067963c4b8d0285a3f70b71d2b438c66c2e40c.tar.bz2
micronucleus-2e067963c4b8d0285a3f70b71d2b438c66c2e40c.zip
commandline: clean up folder structure
Diffstat (limited to 'commandline/Makefile')
-rw-r--r--commandline/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/commandline/Makefile b/commandline/Makefile
index b5bea87..028f7aa 100644
--- a/commandline/Makefile
+++ b/commandline/Makefile
@@ -39,8 +39,8 @@ $(LWLIBS):
$(CC) $(CFLAGS) -c library/$@.c
$(EXAMPLES): $(addsuffix .o, $(LWLIBS))
- @echo Building example: $@...
- $(CC) $(CFLAGS) -o $@$(EXE_SUFFIX) examples/$@.c $^ $(LIBS)
+ @echo Building command line tool: $@...
+ $(CC) $(CFLAGS) -o $@$(EXE_SUFFIX) $@.c $^ $(LIBS)
clean:
rm -f $(EXAMPLES)$(EXE_SUFFIX) *.o *.exe