Added Makefile for Linux & MinGW;

Allowing people to build easily from source.
This commit is contained in:
Naim A 2012-12-07 03:39:01 +02:00
parent a4c2f83979
commit 0ef79d37aa
2 changed files with 54 additions and 0 deletions

40
Makefile Normal file
View file

@ -0,0 +1,40 @@
#
# Copyright © 2012 Naim A.
#
# This file is part of UDPT.
#
# UDPT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# UDPT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with UDPT. If not, see <http://www.gnu.org/licenses/>.
#
win32: main.o tools.o udpTracker.o driver_sqlite.o
gcc -static -O3 -o udpt.exe main.o tools.o udpTracker.o driver_sqlite.o -lsqlite3 -lws2_32
linux: main.o tools.o udpTracker.o driver_sqlite.o
gcc -static -O3 -o udpt main.o tools.o udpTracker.o driver_sqlite.o -lsqlite3 -lpthreads
main.o:
gcc -c -O3 -o main.o src/main.c
tools.o:
gcc -c -O3 -o tools.o src/tools.c
udpTracker.o:
gcc -c -O3 -o udpTracker.o src/udpTracker.c
driver_sqlite.o:
gcc -O3 -c -o driver_sqlite.o src/db/driver_sqlite.c
.PHONY: clean
clean:
rm -f udpt.exe main.o tools.o udpTracker.o driver_sqlite.o udpt

14
README
View file

@ -4,6 +4,20 @@ README for the UDPT project.
Licensed under GNU GPLv3.
The license file is attached under the name gpl.txt.
Compiling under linux or linux environment (MinGW):
For Windows (with Linux environment):
$ make win32
For Linux:
$ make linux
Running:
$ ./udpt
Cleaning:
$ make clean
This software currently uses the Sqlite3 Library (public domain).
Developed by Naim A. <naim94a@gmail.com>.