(reading /etc/fstab from db not working yet) core/mount.h core/mountparser.h core/mountparser.cpp core/mounts.h core/mounts.cpp content/thread.cpp content/createthread.cpp templates/thread.cpp git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@495 e52654a7-88a9-db11-a3e9-0013d4bc506e
26 lines
334 B
Makefile
Executable File
26 lines
334 B
Makefile
Executable File
o = templates.o sys.o item.o doc.o user.o dir.o done.o priv.o patterncacher.o who.o last.o thread.o
|
|
|
|
|
|
all: templates.a
|
|
|
|
templates.a: $(o)
|
|
ar rcs templates.a $(o)
|
|
|
|
.SUFFIXES: .cpp .o
|
|
|
|
.cpp.o:
|
|
$(CC) -c $(CFLAGS) $<
|
|
|
|
depend:
|
|
makedepend $(DEPMACROS) -Y. -f- *.cpp > Makefile.dep
|
|
|
|
|
|
clean:
|
|
rm -f *.o
|
|
rm -f *.a
|
|
|
|
|
|
include Makefile.dep
|
|
|
|
|