|
Last change
on this file was
10,
checked in by guillaumeb, 16 years ago
|
|
ajout de documentation : modèle pour les slides
|
|
File size:
442 bytes
|
| Line | |
|---|
| 1 | SYSTEMC=../lib/systemc |
|---|
| 2 | |
|---|
| 3 | CPP=g++ |
|---|
| 4 | CC=gcc |
|---|
| 5 | #OPT=-O3 |
|---|
| 6 | DEBUG=-g |
|---|
| 7 | OTHER=-Wall |
|---|
| 8 | CFLAGS= $(OTHER) $(DEBUG) |
|---|
| 9 | |
|---|
| 10 | MODULE = run |
|---|
| 11 | SRCS = util.cpp \ |
|---|
| 12 | processing_queue.cpp \ |
|---|
| 13 | main.cpp \ |
|---|
| 14 | processor.cpp \ |
|---|
| 15 | l1cache.cpp \ |
|---|
| 16 | l2cache.cpp \ |
|---|
| 17 | monitor.cpp \ |
|---|
| 18 | cache_store.cpp |
|---|
| 19 | |
|---|
| 20 | CXXSRCS=$(filter %.cpp, $(SRCS)) |
|---|
| 21 | CSRCS=$(filter %.c, $(SRCS)) |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | OBJSPP=$(CXXSRCS:.cpp=.o) |
|---|
| 25 | OBJS=$(CSRCS:.c=.o) |
|---|
| 26 | |
|---|
| 27 | include ./Makefile.defs |
|---|
| 28 | |
|---|
| 29 | test: |
|---|
| 30 | ./run.x ../tests/simple_loop.adr |
|---|
| 31 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.