diff options
| author | Nakidai <nakidai@disroot.org> | 2024-11-29 10:37:47 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2024-11-29 10:37:47 +0300 |
| commit | 9f5f94a729ecbd99a8d2adac29b107afa80574c6 (patch) | |
| tree | 49798529314b60c31070b9cffe122cf0331565d3 /Makefile | |
| parent | 2502543936a8523a24b630ca49b3185ebfd724d5 (diff) | |
| download | libhttpc-9f5f94a729ecbd99a8d2adac29b107afa80574c6.tar.gz libhttpc-9f5f94a729ecbd99a8d2adac29b107afa80574c6.zip | |
Add LibHTTPC_SOCK compile-time flag
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 86265ce..d99eef5 100644 --- a/Makefile +++ b/Makefile @@ -27,14 +27,14 @@ libhttpc.a: ar rcs $@ $^ install: all - install -d $(DESTDIR)/lib + install -d $(DESTDIR)/lib ${DESTDIR}/include/libhttpc install -m644 libhttpc.a $(DESTDIR)/lib install -m755 libhttpc.so $(DESTDIR)/lib - install -m644 include/libhttpc.h $(DESTDIR)/include + install -m644 include/{config,libhttpc}.h $(DESTDIR)/include uninstall: $(RM) $(DESTDIR)/lib/libhttpc.{a,so} - $(RM) $(DESTDIR)/include/libhttpc.h + $(RM) $(DESTDIR)/include/libhttpc/{config,libhttpc}.h clean: rm -f ${OBJS} libhttpc.a libhttpc.so |