mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
15 lines
196 B
Makefile
15 lines
196 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) $@
|
|
|
|
dummy:
|