diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index d99eef5..5df7ef8 100644 --- a/Makefile +++ b/Makefile @@ -30,11 +30,11 @@ install: all install -d $(DESTDIR)/lib ${DESTDIR}/include/libhttpc install -m644 libhttpc.a $(DESTDIR)/lib install -m755 libhttpc.so $(DESTDIR)/lib - install -m644 include/{config,libhttpc}.h $(DESTDIR)/include + install -m644 include/{config,libhttpc}.h $(DESTDIR)/include/libhttpc uninstall: $(RM) $(DESTDIR)/lib/libhttpc.{a,so} - $(RM) $(DESTDIR)/include/libhttpc/{config,libhttpc}.h + $(RM) -r $(DESTDIR)/include/libhttpc/ clean: rm -f ${OBJS} libhttpc.a libhttpc.so |