Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(417)

Unified Diff: experimental/linux_debug_server/debugger/nacl-gdb_server/Makefile

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/linux_debug_server/debugger/nacl-gdb_server/Makefile
diff --git a/experimental/linux_debug_server/debugger/nacl-gdb_server/Makefile b/experimental/linux_debug_server/debugger/nacl-gdb_server/Makefile
deleted file mode 100644
index 4545b9823195bbcaaeece77513a3139cbf86394a..0000000000000000000000000000000000000000
--- a/experimental/linux_debug_server/debugger/nacl-gdb_server/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-VPATH = ../base ../rsp ../core
-
-BASE_CCFILES = \
- debug_blob.cc \
- debug_command_line.cc \
- debug_socket.cc
-
-RSP_CCFILES = \
- rsp_blob_utils.cc \
- rsp_common_replies.cc \
- rsp_control_packets.cc \
- rsp_info_packets.cc \
- rsp_packet_utils.cc \
- rsp_packets.cc \
- rsp_packetizer.cc \
- rsp_threads_packets.cc
-
-CORE_CCFILES = \
- debug_api.cc \
- debuggee_process.cc \
- debuggee_thread.cc
-
-SERVER_CCFILES = \
- debug_server.cc \
- gdb_registers.cc \
- nacl-gdb_server.cc
-
-CCFILES = $(BASE_CCFILES) $(RSP_CCFILES) $(CORE_CCFILES) $(SERVER_CCFILES)
-
-CFLAGS = -Wall -Wno-long-long -Werror
-INCLUDES = -I../../
-
-.SUFFIXES: .cc .o
-CPP = g++
-OBJDIR = obj
-OPT_FLAGS = -O2
-
-$(OBJDIR)/%64.o:: %.cc
- $(CPP) $(CFLAGS) -m64 $(INCLUDES) -c -o $@ $<
-
-$(OBJDIR)/%32.o:: %.cc
- $(CPP) $(CFLAGS) -m32 $(INCLUDES) -c -o $@ $<
-
-$(OBJDIR):
- mkdir -p $(OBJDIR)
-
-OBJECTS_32 = $(patsubst %,${OBJDIR}/%,$(CCFILES:%.cc=%32.o))
-OBJECTS_64 = $(patsubst %,${OBJDIR}/%,$(CCFILES:%.cc=%64.o))
-
-dbg32.exe: $(OBJECTS_32)
- $(CPP) -m32 $^ $(LDFLAGS) -o $@
-
-dbg64.exe: $(OBJECTS_64)
- $(CPP) -m64 $^ $(LDFLAGS) -o $@

Powered by Google App Engine
This is Rietveld 408576698