summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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