commit | 3314730208e15eead58b9d9c7cfbe1161f02f704 | [log] [tgz] |
---|---|---|
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Mon Apr 09 21:22:22 2018 +0200 |
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Mon May 21 11:34:04 2018 +0200 |
tree | c04e0c39647aed72ced46a6f0c0a1b059b165cc0 | |
parent | 9b6ff7ca915c9e2d186d22ff034cde6ab9bdf0f9 [diff] [blame] |
Initial hello-world program. Change-Id: Iaf532290dcde6118eec31d3b5283908cc552335e
diff --git a/makefile b/makefile new file mode 100644 index 0000000..539a1ee --- /dev/null +++ b/makefile
@@ -0,0 +1,12 @@ +.PHONY: all clean + +all: hello-world-ng + +clean: + $(RM) hello-world-ng.o hello-world + +hello-world-ng: hello-world-ng.o + $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ + +%.o: %.cpp + $(CXX) $(CXXFLAGS) -o $@ -c $<