URL
https://opencores.org/ocsvn/test_project/test_project/trunk
Subversion Repositories test_project
[/] [test_project/] [trunk/] [sw/] [utils/] [Makefile] - Rev 27
Go to most recent revision | Compare with Previous | Blame | View Log
PROGRAMS = bin2c bin2srec bin2flimg bin2hex
# NB: 'loader' not in that list
CC = gcc
CFLAGS = -O2 -Wall
% : %.c
@/bin/rm -f $@
$(CC) -o $@ $(CFLAGS) $<
all: $(PROGRAMS)
# redundant stanza:
loader: loader.c
$(CC) -o $@ $(CFLAGS) $<
clean:
/bin/rm -f $(PROGRAMS) *~ *.bak
Go to most recent revision | Compare with Previous | Blame | View Log