URL
https://opencores.org/ocsvn/copyblaze/copyblaze/trunk
Subversion Repositories copyblaze
[/] [copyblaze/] [trunk/] [copyblaze/] [sw/] [tools/] [asm/] [pBlazASM/] [cpBlazeMRG/] [Makefile] - Rev 67
Go to most recent revision | Compare with Previous | Blame | View Log
CC=gcc
CFLAGS=
C_SRCS += \
./cpBlazeMRG.c
EXE="./cpBlazeMRG.exe"
# All Target
all: $
$(CC) $(CFLAGS) $(C_SRCS) -o $(EXE)
# Other Targets
clean:
$(RM) $(OBJS)
$(RM) $(EXE)
.PHONY: all clean
.SECONDARY:
Go to most recent revision | Compare with Previous | Blame | View Log