source: trunk/Makefile @ 2

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

commit initial

File size: 448 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/addresses.adr
Note: See TracBrowser for help on using the repository browser.