diff options
Diffstat (limited to 'NMakefile.template')
-rw-r--r-- | NMakefile.template | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/NMakefile.template b/NMakefile.template index 1b6f6bd..8a787a1 100644 --- a/NMakefile.template +++ b/NMakefile.template @@ -89,6 +89,7 @@ OBJS = \ $(OUTDIR)/hash.obj \ $(OUTDIR)/implicit.obj \ $(OUTDIR)/job.obj \ + $(OUTDIR)/load.obj \ $(OUTDIR)/main.obj \ $(OUTDIR)/misc.obj \ $(OUTDIR)/output.obj \ @@ -105,6 +106,7 @@ OBJS = \ $(OUTDIR)/fnmatch.obj \ $(OUTDIR)/dirent.obj \ $(OUTDIR)/pathstuff.obj \ + $(OUTDIR)/posixfcn.obj \ $(guile) $(OUTDIR)/make.exe: $(OUTDIR) $(OBJS) @@ -121,5 +123,7 @@ $(OUTDIR)/fnmatch.obj : glob/fnmatch.c $(CC) $(CFLAGS) /c $? $(OUTDIR)/dirent.obj : w32/compat/dirent.c $(CC) $(CFLAGS) /c $? +$(OUTDIR)/pathstuff.obj : w32/compat/posixfcn.c + $(CC) $(CFLAGS) /c $? $(OUTDIR)/pathstuff.obj : w32/pathstuff.c $(CC) $(CFLAGS) /c $? |