| 12345678910111213141516171819202122 |
- # Makefile for src/mod/channels.mod/
- srcdir = .
- OBJS = channels.So
- include ./.deps/includes
- include $(top_srcdir)/build/build.mk
- doofus:
- @echo ""
- @echo "Let's try this from the right directory..."
- @echo ""
- @cd ../../../ && make
- static: $(OBJS)
- clean:
- @rm -f .depend *.So *~
- distclean: clean
|