aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineVersionsRequest.cs
blob: a1fd1d02fc6866d18ede632b8a79e15b855c6b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Transport.Web;

namespace Tango.PPC.Common.Web
{
    public class MachineVersionsRequest : WebRequestMessage
    {

    }
}
ectory (at the time the # sources were generated) is: # C:\Tango\Software\Embedded_SW\Embedded\src # GEN_SRC_DIR ?= ../src ifeq (,$(wildcard $(GEN_SRC_DIR))) $(error "ERROR: GEN_SRC_DIR must be set to the directory containing the generated sources") endif # # ======== .force ======== # The .force goal is used to force the build of any goal that names it as # a prerequisite # .PHONY: .force # # ======== library macros ======== # sysbios_SRC = $(GEN_SRC_DIR)/sysbios sysbios_LIB = $(GEN_SRC_DIR)/sysbios/sysbios.aem4f # # ======== dependencies ======== # all: $(sysbios_LIB) clean: .sysbios_clean # ======== convenient build goals ======== .PHONY: sysbios sysbios: $(GEN_SRC_DIR)/sysbios/sysbios.aem4f # CDT managed make executables depend on $(OBJS) OBJS += $(sysbios_LIB) # # ======== rules ======== # $(sysbios_LIB): .force @echo making $@ ... @$(MAKE) -C $(sysbios_SRC) .sysbios_clean: @echo cleaning $(sysbios_SRC) ... -@$(MAKE) --no-print-directory -C $(sysbios_SRC) clean