Skip to content

Commit

Permalink
Adopt changes of VRP to the new posix.mak too.
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytm committed Jun 18, 2011
1 parent 9fdd734 commit 59e5969
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ DMD_OBJS = \
type.o typinf.o util.o var.o version.o strtold.o utf.o staticassert.o \
unialpha.o toobj.o toctype.o toelfdebug.o entity.o doc.o macro.o \
hdrgen.o delegatize.o aa.o ti_achar.o toir.o interpret.o traits.o \
builtin.o clone.o aliasthis.o \
builtin.o clone.o aliasthis.o intrange.o \
man.o arrayop.o port.o response.o async.o json.o speller.o aav.o unittests.o \
imphint.o argtypes.o ti_pvoid.o

Expand All @@ -95,7 +95,7 @@ SRC = win32.mak posix.mak \
inifile.c iasm.c module.c scope.c dump.c init.h init.c attrib.h \
attrib.c opover.c class.c mangle.c bit.c tocsym.c func.c inline.c \
access.c complex_t.h irstate.h irstate.c glue.c msc.c ph.c tk.c \
s2ir.c todt.c e2ir.c util.c identifier.h parse.h \
s2ir.c todt.c e2ir.c util.c identifier.h parse.h intrange.h \
scope.h enum.h import.h mars.h module.h mtype.h dsymbol.h \
declaration.h lexer.h expression.h irstate.h statement.h eh.c \
utf.h utf.c staticassert.h staticassert.c unialpha.c \
Expand All @@ -104,7 +104,7 @@ SRC = win32.mak posix.mak \
delegatize.c toir.h toir.c interpret.c traits.c cppmangle.c \
builtin.c clone.c lib.h libomf.c libelf.c libmach.c arrayop.c \
aliasthis.h aliasthis.c json.h json.c unittests.c imphint.c \
argtypes.c \
argtypes.c intrange.c \
$C/cdef.h $C/cc.h $C/oper.h $C/ty.h $C/optabgen.c \
$C/global.h $C/parser.h $C/code.h $C/type.h $C/dt.h $C/cgcv.h \
$C/el.h $C/iasm.h $C/rtlsym.h $C/html.h \
Expand Down Expand Up @@ -338,8 +338,8 @@ enum.o: enum.c
evalu8.o: $C/evalu8.c
$(CC) -c $(MFLAGS) $<

expression.o: expression.c
$(CC) -c $(CFLAGS) $<
expression.o: expression.c expression.h
$(CC) -c $(CFLAGS) expression.c

func.o: func.c
$(CC) -c $(CFLAGS) $<
Expand Down Expand Up @@ -407,6 +407,9 @@ inline.o: inline.c
interpret.o: interpret.c
$(CC) -c $(CFLAGS) $<

intrange.o: intrange.h intrange.c
$(CC) -c $(CFLAGS) intrange.c

json.o: json.c
$(CC) -c $(CFLAGS) $<

Expand Down Expand Up @@ -642,6 +645,7 @@ endif
gcov utf.c
gcov util.c
gcov version.c
gcov intrange.c

# gcov hdrgen.c
# gcov tocvdebug.c
Expand Down

0 comments on commit 59e5969

Please sign in to comment.