Overview
Comment: | Removed extraneous reference to stringify |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ce18c8a9b9e73ae860b3fbf125580756f01a299e |
User & Date: | rkeene on 2014-09-10 07:33:42 |
Other Links: | manifest | tags |
Context
2014-09-10
| ||
07:38 | Updated to check SHA1 of downloaded artifacts check-in: 7321b530dd user: rkeene tags: trunk | |
07:33 | Removed extraneous reference to stringify check-in: ce18c8a9b9 user: rkeene tags: trunk | |
07:29 | Updated to string-ify Tcl script using "sed" check-in: f3c0a33c84 user: rkeene tags: trunk | |
Changes
Modified Makefile from [7cb5c594ef] to [bfa3d240c3].
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
appfsd: appfsd.o
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o appfsd appfsd.o $(LIBS)
appfsd.o: appfsd.c appfsd.tcl.h
$(CC) $(CPPFLAGS) $(CFLAGS) -o appfsd.o -c appfsd.c
appfsd.tcl.h: appfsd.tcl stringify.tcl
sed 's@[\\"]@\\&@g;s@^@ "@;s@$$@\\n"@' appfsd.tcl > appfsd.tcl.h.new
mv appfsd.tcl.h.new appfsd.tcl.h
install: appfsd
cp appfsd $(bindir)
clean:
rm -f appfsd appfsd.o
rm -f appfsd.tcl.h
distclean: clean
.PHONY: all test clean distclean install
|
| |
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
appfsd: appfsd.o $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o appfsd appfsd.o $(LIBS) appfsd.o: appfsd.c appfsd.tcl.h $(CC) $(CPPFLAGS) $(CFLAGS) -o appfsd.o -c appfsd.c appfsd.tcl.h: appfsd.tcl sed 's@[\\"]@\\&@g;s@^@ "@;s@$$@\\n"@' appfsd.tcl > appfsd.tcl.h.new mv appfsd.tcl.h.new appfsd.tcl.h install: appfsd cp appfsd $(bindir) clean: rm -f appfsd appfsd.o rm -f appfsd.tcl.h distclean: clean .PHONY: all test clean distclean install |