URL
https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk
Subversion Repositories open8_urisc
[/] [open8_urisc/] [trunk/] [Open8 Tools/] [open8_src/] [open8_as/] [opcode_table_generator/] [makefile] - Rev 198
Go to most recent revision | Compare with Previous | Blame | View Log
CC=cc
LD=cc
WLA_TARGET?=HUC6280
WLA_QUIET?=0
CFLAGS = -c -DUNIX -D$(WLA_TARGET) -DQUIET=$(WLA_QUIET)
CFILES = main.c
OFILES = main.o
all: $(OFILES) makefile
$(LD) $(LDFLAGS) $(OFILES) -o gen ; strip gen
main.o: main.c makefile
$(CC) $(CFLAGS) main.c
$(OFILES): $(CFILES)
clean:
rm -f $(OFILES) core *~ gen
Go to most recent revision | Compare with Previous | Blame | View Log