freebsd.mk (787e1130) | freebsd.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 --- 164 unchanged lines hidden (view full) --- 173 174# convert parametters filesystem root to native notation 175# does some real work only on windows, make sure not to 176# break the dummy implementations on unx* 177define gb_Helper_convert_native 178$(1) 179endef 180 | 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 --- 164 unchanged lines hidden (view full) --- 173 174# convert parametters filesystem root to native notation 175# does some real work only on windows, make sure not to 176# break the dummy implementations on unx* 177define gb_Helper_convert_native 178$(1) 179endef 180 |
181# AsmObject class 182 183gb_AsmObject_EXT := .s 184 185define gb_AsmObject__command 186$(call gb_Output_announce,$(2),$(true),ASM,3) 187$(call gb_Helper_abbreviate_dirs,\ 188 mkdir -p $(dir $(1)) && \ 189 $(gb_CC) \ 190 $(DEFS) \ 191 $(T_CFLAGS) \ 192 $(CFLAGS) \ 193 -c $(3) \ 194 -o $(1) \ 195 -MT $(1) \ 196 -I$(dir $(3)) \ 197 $(INCLUDE)) 198endef 199 |
|
181# CObject class 182 183# $(call gb_CObject__command,object,relative-source,source,dep-file) 184define gb_CObject__command 185$(call gb_Output_announce,$(2),$(true),C ,3) 186$(call gb_Helper_abbreviate_dirs,\ 187 mkdir -p $(dir $(1)) $(dir $(4)) && \ 188 $(gb_CC) \ --- 297 unchanged lines hidden --- | 200# CObject class 201 202# $(call gb_CObject__command,object,relative-source,source,dep-file) 203define gb_CObject__command 204$(call gb_Output_announce,$(2),$(true),C ,3) 205$(call gb_Helper_abbreviate_dirs,\ 206 mkdir -p $(dir $(1)) $(dir $(4)) && \ 207 $(gb_CC) \ --- 297 unchanged lines hidden --- |