Overview
Comment: | Updated Makefile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tcl-ops |
Files: | files | file ages | folders |
SHA1: | a6cb1222223daec279af0362c52620863c6382f6 |
User & Date: | rkeene on 2014-11-07 07:17:12 |
Other Links: | manifest | tags |
Context
2014-11-07
| ||
07:20 | Converted global variables to not be part of a struct check-in: f277407cbc user: rkeene tags: tcl-ops | |
07:17 | Updated Makefile check-in: a6cb122222 user: rkeene tags: tcl-ops | |
07:15 | Removed extraneous debugging check-in: ed1bf1669b user: rkeene tags: tcl-ops | |
Changes
Modified Makefile from [a8fe70a2c7] to [5e87139775].
33 33 sha1.o: sha1.c sha1.tcl.h 34 34 $(CC) $(CPPFLAGS) $(CFLAGS) -o sha1.o -c sha1.c 35 35 36 36 %.tcl.h: %.tcl 37 37 sed 's@[\\"]@\\&@g;s@^@ "@;s@$$@\\n"@' $^ > $@.new 38 38 mv $@.new $@ 39 39 40 -install: appfsd 40 +install: appfsd appfs-cache appfs-mkfs 41 41 if [ ! -d '$(DESTDIR)$(sbindir)' ]; then mkdir -p '$(DESTDIR)$(sbindir)'; chmod 755 '$(DESTDIR)$(sbindir)'; fi 42 + if [ ! -d '$(DESTDIR)$(bindir)' ]; then mkdir -p '$(DESTDIR)$(bindir)'; chmod 755 '$(DESTDIR)$(bindir)'; fi 42 43 cp appfsd '$(DESTDIR)$(sbindir)/' 44 + cp appfs-cache '$(DESTDIR)$(sbindir)/' 45 + cp appfs-mkfs '$(DESTDIR)$(bindir)/' 43 46 44 47 clean: 45 48 rm -f appfsd appfsd.o 46 49 rm -f appfsd.tcl.h 47 50 rm -f sha1.o sha1.tcl.h 48 51 49 52 distclean: clean 50 53 51 54 .PHONY: all test clean distclean install