From owner-freebsd-ports@freebsd.org Wed Nov 15 08:08:13 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0A6FDD4A62 for ; Wed, 15 Nov 2017 08:08:13 +0000 (UTC) (envelope-from gurenchan@gmail.com) Received: from mail-it0-x236.google.com (mail-it0-x236.google.com [IPv6:2607:f8b0:4001:c0b::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8FEA521B5 for ; Wed, 15 Nov 2017 08:08:13 +0000 (UTC) (envelope-from gurenchan@gmail.com) Received: by mail-it0-x236.google.com with SMTP id l196so795933itl.4 for ; Wed, 15 Nov 2017 00:08:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=BUDsXBImucDtZJZIzKPxoiUNzzt3bEAu9DOSPF7wavk=; b=sB2ro7JSm89v6zTuPSqVAebUGTV/8g61xU3+2EAQ2mgi320umMN2qioLlldPhTfVOh nK32AKHQAZUssAFjBu8FdjdPuoRMMeY5Sqlo7hTl5GKPuA6uZUkZwaIFZ6m/gBRANOZe Ofq4lMs897mIKTWsrgo1oYJcKz3LIlpShfleGaffaBBCAriO2PfCUE3p4T5ipdfvnqTk R2JJ0tNxQMZxb9q/CgblBsnoKUxW+KcClPXbfp7ZcKR3q7GNEwQTPcnXeUzT1mZUo0o7 UHJyoh9rGsyPFFHH+Amhzhsx4VI4UGum1TeDk1LLBiAjN6ZiKDfzLifUz2p0meJWxvGN 8xew== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=BUDsXBImucDtZJZIzKPxoiUNzzt3bEAu9DOSPF7wavk=; b=boW7N0gFZ9s17hYQ0Sz3z1Na01AIvZqiAJtFKq8MxMIolf8RATAL28AqLyzykrQin3 xg6h0MCrNxpwE6HFu+s/ovZorH28y0GJtfdUPo744PvGh6u7nFmR1SJOVH/N+HsccW62 GWM56vGquxLV4/CPPPzfh0PRplzotaJBKBRWawxw99nVcUhND31RnqGNkE6MlF5Fckss N+YBvYSIhnCuCvOII9+NoGhXDumfqipTL9e07FSvMKvgxko/FBcUEeqUXa2uobz3AJFF SGhtKYy6vEUZiDfUTmtLbqbGGtpFF7/7WmocR7LZqwWAKARTyzGkrk6Umd6rmwcUUsx1 U9tA== X-Gm-Message-State: AJaThX6YTpSsYL5/VDaIEJgom+5u5/nQ9BpKpzLz/tU6tdrLEecy4f3H KIMTfp3FrlQo7idBgbzAFiP6/CHXHXnPg/eoKH/whQ== X-Google-Smtp-Source: AGs4zMYyElqZwb57ZdJrUh9hTJFi6P+EoS9r2F7KNuZTF+km6DDHiAj9tA9YGrjucpkODB97W+dxHAeckRalywbFx+o= X-Received: by 10.36.167.77 with SMTP id s13mr4704663iti.51.1510733292362; Wed, 15 Nov 2017 00:08:12 -0800 (PST) MIME-Version: 1.0 Received: by 10.107.11.31 with HTTP; Wed, 15 Nov 2017 00:08:11 -0800 (PST) From: blubee blubeeme Date: Wed, 15 Nov 2017 16:08:11 +0800 Message-ID: Subject: A project with it's own Makefiles To: FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Nov 2017 08:08:13 -0000 I have a port that has a it's own Makefiles that you're suppose to call to build for example the folder structure is like this: project --subfolderA ---subfolderA-src ---subfolderA-Makefile --subfolderB ---subfolderB-src ---subfolderB-Makefile --subfolderC ---subfolderC-src ---subfolderC-Makefile you're suppose to choose which sets of examples you want to build. To port this to FreeBSD do I have to write a cmake or makefile to encapsulate these sub directories or is there tools already in place to build this?