PR#6729: minor Makefile.nt fix

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@15755 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Gabriel Scherer 2014-12-27 10:43:38 +00:00
parent b0e1787931
commit 65758c08dd
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ $(LINKEDFILES): %.c: ../byterun/%.c
win32.$(O): ../byterun/win32.c
$(CC) -c $(NATIVECCCOMPOPTS) -DNATIVE_CODE $(IFLEXDIR) ../byterun/win32.c
%.c: %.$(O)
%.$(O): %.c
$(CC) $(CFLAGS) -c -o $@ $<
clean::

View File

@ -33,10 +33,10 @@ libcamlrun.$(A): $(OBJS)
libcamlrund.$(A): $(DOBJS)
$(call MKLIB,libcamlrund.$(A),$(DOBJS))
%.c: %.$(O)
%.$(O): %.c
$(CC) $(CFLAGS) $(BYTECCCOMPOPTS) -c -o $@ $<
%.c: %.$(DBGO)
%.$(DBGO): %.c
$(CC) $(CFLAGS) $(BYTECCDBGCOMPOPTS) -c -o $@ $<
.depend.nt: .depend