OpenCores
URL https://opencores.org/ocsvn/pcie_ds_dma/pcie_ds_dma/trunk

Subversion Repositories pcie_ds_dma

[/] [pcie_ds_dma/] [trunk/] [soft/] [linux/] [driver/] [pexdrv/] [exam/] [Makefile] - Rev 54

Compare with Previous | Blame | View Log

#
#change this makefile for your target...
#

PHONY = clean
TARGET_NAME = pex_test

all: $(TARGET_NAME)

ROOT_DIR = $(shell pwd)

CC = $(CROSS_COMPILE)g++
LD = $(CROSS_COMPILE)g++

CFLAGS := -D__LINUX__ -g -Wall -I.. -I../../../common/utils -I../../../common/board
LFLAGS =

$(TARGET_NAME): $(patsubst %.cpp,%.o, $(wildcard *.cpp))
        $(LD) $(notdir $^) -o $(TARGET_NAME) $(LFLAGS)
        rm -f *.o *~ core

%.o: %.cpp
        $(CC) $(CFLAGS) -c -MD $<
        
include $(wildcard *.d)


clean:
        rm -f *.o *~ core
        rm -f *.d *~ core
        rm -f $(TARGET_NAME)
        
distclean:
        rm -f *.o *~ core
        rm -f *.d *~ core
        rm -f $(TARGET_NAME)

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.