mirror of https://github.com/BOINC/boinc.git
27 lines
419 B
Plaintext
27 lines
419 B
Plaintext
CXXFLAGS = -g -DSIM \
|
|
-I ../lib \
|
|
-I ..
|
|
|
|
OBJS = \
|
|
app.o \
|
|
client_msgs.o \
|
|
cs_apps.o \
|
|
cpu_sched.o \
|
|
log_flags.o \
|
|
sim.o \
|
|
sim_util.o \
|
|
time_stats.o \
|
|
work_fetch.o \
|
|
edf_sim.o \
|
|
../lib/coproc.o \
|
|
../lib/mfile.o \
|
|
../lib/miofile.o \
|
|
../lib/parse.o \
|
|
../lib/prefs.o \
|
|
../lib/str_util.o
|
|
|
|
all: sim
|
|
|
|
sim: $(OBJS)
|
|
$(CXX) $(CXXFLAGS) $(OBJS) -o sim -ldl
|