summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2016-01-14 05:04:49 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2016-01-14 05:04:49 +0100
commit667c6a7e0697f9ed21db32e8043411c9329afad5 (patch)
treea984aebfa3e8b08d83c32f10e1a87f4e8bc68e0d /Makefile
parenteadecd41caf9a15b973f704ad77801507d68f961 (diff)
downloadldap-plugin-667c6a7e0697f9ed21db32e8043411c9329afad5.tar.gz
ldap-plugin-667c6a7e0697f9ed21db32e8043411c9329afad5.tar.bz2
ldap-plugin-667c6a7e0697f9ed21db32e8043411c9329afad5.zip
Add Doxyfile and doc target in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0b1538b..1dccd71 100644
--- a/Makefile
+++ b/Makefile
@@ -8,10 +8,14 @@ LDFLAGS = -G
all: $(TARGET).so
clean:
- rm -f $(TARGET).o $(TARGET).so
+ $(RM) $(TARGET).o $(TARGET).so
+ $(RM) -r html/ latex/
%.so: %.o
$(LD) $(LDFLAGS) -o $@ $^
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $^
+
+doc:
+ doxygen Doxyfile