| 123456789101112131415161718192021222324 |
- # Makefile for src/mod/update.mod/
- srcdir = .
- depcomp = /bin/sh ../../../build/autotools/depcomp
- #This line is simply for configure to generate .deps/
- OBJS = update.o
- include ./.deps/includes
- include ../mod.mk
- doofus:
- @echo ""
- @echo "Let's try this from the right directory..."
- @echo ""
- @cd ../../../ && make
- static: ../update.o
- clean:
- @rm -f .depend *.o *~
- distclean: clean
|