Overview
Comment: | Fixed mofiles directory in makefile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.70-refactor02 | v1.70-defunct-try |
Files: | files | file ages | folders |
SHA1: |
bb7d80ad2e9ebe644bcd307f68f7d92a |
User & Date: | jmoon18 on 2019-12-31 13:31:55 |
Other Links: | branch diff | manifest | tags |
Context
2019-12-31
| ||
13:32 | Added ulext to imports of commonmod check-in: a43891f30d user: jmoon18 tags: v1.70-refactor02, v1.70-defunct-try | |
13:31 | Fixed mofiles directory in makefile check-in: bb7d80ad2e user: jmoon18 tags: v1.70-refactor02, v1.70-defunct-try | |
13:06 | wip check-in: 39164c1a21 user: mrwellan tags: v1.70-refactor02, v1.70-defunct-try | |
Changes
Modified Makefile from [b166d2ccee] to [a962be5e52].
︙ | ︙ | |||
62 63 64 65 66 67 68 | %.import.o : %.import.scm csc -unit $*.import -c $*.import.scm -o $*.import.o # mofiles/ducttape-lib.o : ducttape-lib.scm ducttape/*scm # csc -I ducttape -J -c ducttape-lib.scm -o mofiles/ducttape-lib.o mofiles/%.o %.import.scm : %.scm | | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | %.import.o : %.import.scm csc -unit $*.import -c $*.import.scm -o $*.import.o # mofiles/ducttape-lib.o : ducttape-lib.scm ducttape/*scm # csc -I ducttape -J -c ducttape-lib.scm -o mofiles/ducttape-lib.o mofiles/%.o %.import.scm : %.scm @[ -e mofiles ] || mkdir -p mofiles csc $(CSCOPTS) -I $* -J -c $< -o mofiles/$*.o @touch $*.import.scm # ensure it is touched after the .o is made # a.import.o : a.import.scm a.o # csc -unit a.import -c a.import.scm -o $*.o ADTLSCR=mt_laststep mt_runstep mt_ezstep |
︙ | ︙ |