Changeset 2208 for trunk


Ignore:
Timestamp:
Jul 4, 2005, 5:38:22 AM (20 years ago)
Author:
bird
Message:

spawn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libctests/libc/Makefile

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2207 r2208  
    8686        smoketests/waitpid-1.c \
    8787        smoketests/wctype-1.c \
     88        smoketests/embryo-1.c
    8889
    8990smoketests/64bitio-1.c_ARGS = $(OUTDIR)/smoketests/2gb.file
     
    9596smoketests/nl_langinfo-1.c_ENVS = LC_ALL=en_US.UTF-8
    9697smoketests/spm-1.c_LDFLAGS = -Zomf -static -lc_omf386
     98#smoketests/embryo-1.c_DEPS = $(OUTDIR)/smoketests/asmstub.exe
     99#smoketests/embryo-1.c_ARGS = $(OUTDIR)/smoketests/asmstub.exe
     100smoketests/embryo-1.c_DEPS = $(OUTDIR)/smoketests/asmstub-omf.exe
     101smoketests/embryo-1.c_ARGS = $(OUTDIR)/smoketests/asmstub-omf.exe
     102                       
     103$(OUTDIR)/smoketests/asmstub.exe: smoketests/asmstub.S
     104        mkdir -p $(dir $@)
     105        gcc -s -nostdlib -o $@ $^
     106
     107$(OUTDIR)/smoketests/asmstub-omf.exe: smoketests/asmstub.S
     108        mkdir -p $(dir $@)
     109        gcc -c -Zaout -o $(OUTDIR)/smoketests/asmstub-omf.o smoketests/asmstub.S
     110        emxomf -m__text -o $(OUTDIR)/smoketests/asmstub-omf.obj $(OUTDIR)/smoketests/asmstub-omf.o
     111        gcc -Zomf -lend -s -nostdlib -o $@ $(OUTDIR)/smoketests/asmstub-omf.obj
    97112       
    98113SUBTESTS := \
    99         SMOKETESTS
     114        SMOKETESTS \
     115        BUGS
    100116       
    101117.SUFFIXES:
Note: See TracChangeset for help on using the changeset viewer.