Skip to content
Snippets Groups Projects
Commit 61db3e39 authored by Timothy Stack's avatar Timothy Stack
Browse files

Bah, I can't seem to write correct makefiles anymore...

parent 0ee1bbb9
No related branches found
No related tags found
No related merge requests found
...@@ -66,19 +66,19 @@ DEPS = \ ...@@ -66,19 +66,19 @@ DEPS = \
local-agent.h node-agent.h rpc.h simulator-agent.h timeline-agent.h \ local-agent.h node-agent.h rpc.h simulator-agent.h timeline-agent.h \
../lib/event.h ../lib/event.h
queue.o: $(DEPS) queue.o: queue.c $(DEPS)
listNode.o: $(DEPS) listNode.o: listNode.c $(DEPS)
error-record.o: $(DEPS) error-record.o: error-record.c $(DEPS)
local-agent.o: $(DEPS) local-agent.o: local-agent.c $(DEPS)
group-agent.o: $(DEPS) group-agent.o: group-agent.c $(DEPS)
simulator-agent.o: $(DEPS) simulator-agent.o: simulator-agent.cc $(DEPS)
node-agent.o: $(DEPS) node-agent.o: node-agent.cc $(DEPS)
event-sched_rpc.o: $(DEPS) event-sched_rpc.o: event-sched.c $(DEPS)
$(CC) $(CFLAGS) -DRPC -c -o $@ $< $(CC) $(CFLAGS) -DRPC -c -o $@ $<
rpc.o: rpc.cc rpc.h event-sched.h rpc.o: rpc.cc rpc.h event-sched.h
$(CXX) $(CXXFLAGS) -DSSHRPC $(ULXRINC) -c $< $(CXX) $(CXXFLAGS) -DSSHRPC $(ULXRINC) -c $<
rrpc.o: $(DEPS) rrpc.o: rpc.cc $(DEPS)
$(CXX) -g $(CXXFLAGS) -DSSLRPC $(ULXRINC) -c -o rrpc.o $< $(CXX) -g $(CXXFLAGS) -DSSLRPC $(ULXRINC) -c -o rrpc.o $<
install: event-sched_rrpc install: event-sched_rrpc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment