Fix incorrect file names

master
Timothy Pearson 10 years ago
parent c912b0f1d3
commit 8783469649

@ -3,7 +3,7 @@ KDE_CXXFLAGS = $(USE_EXCEPTIONS)
bin_PROGRAMS = ulab_fpgaprogserver
ulab_fpgaprogserver_SOURCES = main.cpp fpga_conn.cpp
ulab_fpgaprogserver_SOURCES = main.cpp fpga_progserver.cpp
ulab_fpgaprogserver_METASOURCES = AUTO
ulab_fpgaprogserver_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -ltdekrbsocket -ltqtrla

@ -40,7 +40,7 @@
#include <tdelocale.h>
#include "fpga_conn.h"
#include "fpga_progserver.h"
#define ABORT_SOCKET(s) s->close(); \
s->disconnect(); \
@ -380,4 +380,4 @@ void FPGAServer::newConnection(int socket) {
void FPGAServer::remoteConnectionClosed() {
m_numberOfConnections--;
}
}

@ -37,7 +37,7 @@
#include <tdeaboutdata.h>
#include <ksimpleconfig.h>
#include "fpga_conn.h"
#include "fpga_progserver.h"
static const char description[] = I18N_NOOP("uLab FPGA Programming Server");

Loading…
Cancel
Save