Browse Source

build: Use portable compiler flag constructs in header compilation rule

tags/n1.0
Diego Biurrun 13 years ago
parent
commit
42ade117dd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -46,7 +46,7 @@ COMPILE_S = $(call COMPILE,AS)
$(COMPILE_S)

%.ho: %.h
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ -x c $<
$(CC) $(CCFLAGS) -c $(CC_O) -x c $<

%.ver: %.v
$(Q)sed 's/$$MAJOR/$($(basename $(@F))_VERSION_MAJOR)/' $^ > $@


Loading…
Cancel
Save