aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTaylor C. Richberger <Taywee@gmx.com>2016-05-05 15:53:31 -0600
committerTaylor C. Richberger <Taywee@gmx.com>2016-05-05 15:53:31 -0600
commit0386a0cea1cde3e7ce69d4a0aa14999cfe4ac992 (patch)
tree8c3a4411cbd39e71784736a2e924193cbadc699e /Makefile
parentimprove doxymentation (diff)
downloadargs.hxx-0386a0cea1cde3e7ce69d4a0aa14999cfe4ac992.tar.xz
make pages member to makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 855ae7c..423c1ac 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ OBJECTS = $(SOURCES:.cxx=.o)
DEPENDENCIES= $(SOURCES:.cxx=.d)
EXECUTABLE = test
-.PHONY: all clean
+.PHONY: all clean pages
all: $(EXECUTABLE)
@@ -31,8 +31,14 @@ all: $(EXECUTABLE)
$(EXECUTABLE): $(OBJECTS)
$(CXX) -o $@ $(OBJECTS) $(LDFLAGS)
-clean :
+clean:
rm $(EXECUTABLE) $(OBJECTS) $(DEPENDENCIES)
%.o: %.cxx
$(CXX) $< -o $@ $(CFLAGS)
+
+pages:
+ doxygen Doxyfile
+ mv html/* .
+ rmdir html
+