linux.mk (787e1130) | linux.mk (1bb309c6) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 157 unchanged lines hidden (view full) --- 166 167# convert parametters filesystem root to native notation 168# does some real work only on windows, make sure not to 169# break the dummy implementations on unx* 170define gb_Helper_convert_native 171$(1) 172endef 173 | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 157 unchanged lines hidden (view full) --- 166 167# convert parametters filesystem root to native notation 168# does some real work only on windows, make sure not to 169# break the dummy implementations on unx* 170define gb_Helper_convert_native 171$(1) 172endef 173 |
174# AsmObject class 175 176gb_AsmObject_EXT := .s 177 178define gb_AsmObject__command 179$(call gb_Output_announce,$(2),$(true),ASM,3) 180$(call gb_Helper_abbreviate_dirs,\ 181 mkdir -p $(dir $(1)) && \ 182 $(gb_CC) \ 183 $(DEFS) \ 184 $(T_CFLAGS) \ 185 $(CFLAGS) \ 186 -c $(3) \ 187 -o $(1) \ 188 -MT $(1) \ 189 -I$(dir $(3)) \ 190 $(INCLUDE)) 191endef 192 |
|
174# CObject class 175 176# $(call gb_CObject__command,object,relative-source,source,dep-file) 177define gb_CObject__command 178$(call gb_Output_announce,$(2),$(true),C ,3) 179$(call gb_Helper_abbreviate_dirs,\ 180 mkdir -p $(dir $(1)) $(dir $(4)) && \ 181 $(gb_CC) \ --- 280 unchanged lines hidden --- | 193# CObject class 194 195# $(call gb_CObject__command,object,relative-source,source,dep-file) 196define gb_CObject__command 197$(call gb_Output_announce,$(2),$(true),C ,3) 198$(call gb_Helper_abbreviate_dirs,\ 199 mkdir -p $(dir $(1)) $(dir $(4)) && \ 200 $(gb_CC) \ --- 280 unchanged lines hidden --- |