Overview
Comment: | Updated makefile to add additional wrappers |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-broken |
Files: | files | file ages | folders |
SHA1: |
bb4c7dd6b98dbe9924182e9e5010f884 |
User & Date: | jmoon18 on 2020-05-05 18:18:08 |
Other Links: | branch diff | manifest | tags |
Context
2020-05-06
| ||
14:34 | Updated TODO and added DONE check-in: 7fc5b1bdcc user: mrwellan tags: v1.65-broken | |
2020-05-05
| ||
18:18 | Updated makefile to add additional wrappers check-in: bb4c7dd6b9 user: jmoon18 tags: v1.65-broken | |
18:07 | Updated makefile and initial attempt at mk_wrapper for chicken check-in: 071ebc34ba user: jmoon18 tags: v1.65-broken | |
Changes
Modified Makefile from [8ee00c7d46] to [6e0f876d86].
︙ | ︙ | |||
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | configf.o : configf.scm mofiles/commonmod.o csc $(CSCOPTS) -c configf.scm mofiles/commonmod.o $(PREFIX)/bin/.$(ARCHSTR)/bin/mtest : mtest utils/mk_wrapper @echo Installing to PREFIX=$(PREFIX) $(INSTALL) mtest $(PREFIX)/bin/.$(ARCHSTR)/bin/mtest utils/mk_wrapper $(PREFIX) mtest $(PREFIX)/bin/megatest utils/mk_wrapper_tool $(PREFIX) csi $(PREFIX)/bin/csi chmod a+x $(PREFIX)/bin/megatest $(PREFIX)/bin/.$(ARCHSTR)/bin/ndboard : ndboard $(INSTALL) ndboard $(PREFIX)/bin/.$(ARCHSTR)/bin/ndboard $(PREFIX)/bin/newdashboard : $(PREFIX)/bin/.$(ARCHSTR)/ndboard utils/mk_wrapper utils/mk_wrapper $(PREFIX) ndboard $(PREFIX)/bin/newdashboard chmod a+x $(PREFIX)/bin/newdashboard | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | configf.o : configf.scm mofiles/commonmod.o csc $(CSCOPTS) -c configf.scm mofiles/commonmod.o $(PREFIX)/bin/.$(ARCHSTR)/bin/mtest : mtest utils/mk_wrapper @echo Installing to PREFIX=$(PREFIX) $(INSTALL) mtest $(PREFIX)/bin/.$(ARCHSTR)/bin/mtest utils/mk_wrapper $(PREFIX) mtest $(PREFIX)/bin/megatest utils/mk_wrapper_tool $(PREFIX) chicken $(PREFIX)/bin/chicken utils/mk_wrapper_tool $(PREFIX) chicken-bind $(PREFIX)/bin/chicken-bind utils/mk_wrapper_tool $(PREFIX) chicken-bug $(PREFIX)/bin/chicken-bug utils/mk_wrapper_tool $(PREFIX) chicken-dump $(PREFIX)/bin/chicken-dump utils/mk_wrapper_tool $(PREFIX) chicken-install $(PREFIX)/bin/chicken-install utils/mk_wrapper_tool $(PREFIX) chicken-profile $(PREFIX)/bin/chicken-profile utils/mk_wrapper_tool $(PREFIX) chicken-sqlite3 $(PREFIX)/bin/chicken-sqlite3 utils/mk_wrapper_tool $(PREFIX) chicken-status $(PREFIX)/bin/chicken-status utils/mk_wrapper_tool $(PREFIX) chicken-uninstall $(PREFIX)/bin/chicken-uninstall utils/mk_wrapper_tool $(PREFIX) csc $(PREFIX)/bin/csc utils/mk_wrapper_tool $(PREFIX) csi $(PREFIX)/bin/csi utils/mk_wrapper_tool $(PREFIX) feathers $(PREFIX)/bin/feathers utils/mk_wrapper_tool $(PREFIX) nanocat $(PREFIX)/bin/nanocat utils/mk_wrapper_tool $(PREFIX) sqlite3 $(PREFIX)/bin/sqlite3 utils/mk_wrapper_tool $(PREFIX) vacuumdb $(PREFIX)/bin/vacuumdb utils/mk_wrapper_tool $(PREFIX) logpro $(PREFIX)/bin/logpro utils/mk_wrapper_tool $(PREFIX) refdb $(PREFIX)/bin/refdb chmod a+x $(PREFIX)/bin/megatest chmod a+x $(PREFIX)/bin/chicken chmod a+x $(PREFIX)/bin/chicken-bind chmod a+x $(PREFIX)/bin/chicken-bug chmod a+x $(PREFIX)/bin/chicken-dump chmod a+x $(PREFIX)/bin/chicken-install chmod a+x $(PREFIX)/bin/chicken-profile chmod a+x $(PREFIX)/bin/chicken-sqlite3 chmod a+x $(PREFIX)/bin/chicken-status chmod a+x $(PREFIX)/bin/chicken-uninstall chmod a+x $(PREFIX)/bin/csc chmod a+x $(PREFIX)/bin/csi chmod a+x $(PREFIX)/bin/feathers chmod a+x $(PREFIX)/bin/nanocat chmod a+x $(PREFIX)/bin/sqlite3 chmod a+x $(PREFIX)/bin/vacuumdb chmod a+x $(PREFIX)/bin/refdb chmod a+x $(PREFIX)/bin/logpro $(PREFIX)/bin/.$(ARCHSTR)/bin/ndboard : ndboard $(INSTALL) ndboard $(PREFIX)/bin/.$(ARCHSTR)/bin/ndboard $(PREFIX)/bin/newdashboard : $(PREFIX)/bin/.$(ARCHSTR)/ndboard utils/mk_wrapper utils/mk_wrapper $(PREFIX) ndboard $(PREFIX)/bin/newdashboard chmod a+x $(PREFIX)/bin/newdashboard |
︙ | ︙ |