diff options
author | epochqwert <epoch@hacking.allowed.org> | 2015-03-31 13:38:31 -0500 |
---|---|---|
committer | epochqwert <epoch@hacking.allowed.org> | 2015-03-31 13:38:31 -0500 |
commit | 3b1466afd58e7cfbf5be09df8cfc52409171f5d3 (patch) | |
tree | 83ff40686c230866ac8c245366cacf4c9ed019cf /Makefile | |
parent | 7f43ddc3b96848b1a788a86ae663279dead86f27 (diff) | |
download | segfault-3b1466afd58e7cfbf5be09df8cfc52409171f5d3.tar.gz segfault-3b1466afd58e7cfbf5be09df8cfc52409171f5d3.zip |
moved libhashtable and libirc into their own repos.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -2,18 +2,10 @@ LDFLAGS=-lirc -Llibirc -lhashtable -Llibhashtable CFLAGS=-std=c99 -pedantic -Wall all: - cd libirc && $(MAKE) - cd libhashtable && $(MAKE) $(MAKE) segfault clean: - cd libirc && $(MAKE) clean - cd libhashtable && $(MAKE) clean rm -f segfault install: - cp -f libirc/libirc.so /usr/local/lib - cp -f libhashtable/libhashtable.so /usr/local/lib -# cd libirc && $(MAKE) install -# cd libhashtable && $(MAKE) install cp -f segfault /usr/local/bin/segfault |