mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
17 lines
260 B
Makefile
17 lines
260 B
Makefile
# Top level makefile, the real shit is at src/Makefile
|
|
|
|
TARGETS=32bit noopt test
|
|
|
|
all:
|
|
cd src && $(MAKE) $@
|
|
|
|
install: dummy
|
|
cd src && $(MAKE) $@
|
|
|
|
$(TARGETS) clean:
|
|
cd src && $(MAKE) $@
|
|
cd deps/hiredis && $(MAKE) $@
|
|
cd deps/linenoise && $(MAKE) $@
|
|
|
|
dummy:
|