makefile.mk (127ef3e2) | makefile.mk (fdf35928) |
---|---|
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 --- 17 unchanged lines hidden (view full) --- 26 27# --- Settings ----------------------------------------------------- 28 29.INCLUDE : settings.mk 30.INCLUDE : serf_version.mk 31 32# --- Files -------------------------------------------------------- 33 | 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 --- 17 unchanged lines hidden (view full) --- 26 27# --- Settings ----------------------------------------------------- 28 29.INCLUDE : settings.mk 30.INCLUDE : serf_version.mk 31 32# --- Files -------------------------------------------------------- 33 |
34.IF "$(SYSTEM_SERF)"=="YES" 35 36all: 37 @echo "Using system serf. Does not have to be built." 38 39.ELSE 40 |
|
34# Assemble the full version number from the parts defined in serf_version.mk 35LIBSERFVERSION=$(SERF_MAJOR).$(SERF_MINOR).$(SERF_MICRO) 36 37TARFILE_NAME=$(PRJNAME)-$(LIBSERFVERSION) 38# This is the SHA1 checksum, not MD5 but tg_ext.mk does not now about this and, 39# thankfully, does not care. 40TARFILE_MD5=231af70b7567a753b49df4216743010c193884b7 41 --- 70 unchanged lines hidden (view full) --- 112 113.ENDIF 114 115# --- Targets ------------------------------------------------------ 116 117.INCLUDE : set_ext.mk 118.INCLUDE : target.mk 119.INCLUDE : tg_ext.mk | 41# Assemble the full version number from the parts defined in serf_version.mk 42LIBSERFVERSION=$(SERF_MAJOR).$(SERF_MINOR).$(SERF_MICRO) 43 44TARFILE_NAME=$(PRJNAME)-$(LIBSERFVERSION) 45# This is the SHA1 checksum, not MD5 but tg_ext.mk does not now about this and, 46# thankfully, does not care. 47TARFILE_MD5=231af70b7567a753b49df4216743010c193884b7 48 --- 70 unchanged lines hidden (view full) --- 119 120.ENDIF 121 122# --- Targets ------------------------------------------------------ 123 124.INCLUDE : set_ext.mk 125.INCLUDE : target.mk 126.INCLUDE : tg_ext.mk |
127 128.ENDIF |
|