source: trunk/src/Makefile @ 17

Last change on this file since 17 was 10, checked in by guillaumeb, 15 years ago

ajout de documentation : modèle pour les slides

File size: 442 bytes
Line 
1SYSTEMC=../lib/systemc
2
3CPP=g++
4CC=gcc
5#OPT=-O3
6DEBUG=-g
7OTHER=-Wall
8CFLAGS= $(OTHER) $(DEBUG)
9
10MODULE = run
11SRCS = 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
20CXXSRCS=$(filter %.cpp, $(SRCS))
21CSRCS=$(filter %.c, $(SRCS))
22
23
24OBJSPP=$(CXXSRCS:.cpp=.o)
25OBJS=$(CSRCS:.c=.o)
26
27include ./Makefile.defs
28
29test:
30        ./run.x ../tests/simple_loop.adr
31
Note: See TracBrowser for help on using the repository browser.