blob: 1e40f2f7ab1879df0a8c872603bc8086cedb7eb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
--- Makefile.orig Thu May 8 10:58:17 2003
+++ Makefile Thu May 8 10:58:32 2003
@@ -0,0 +1,34 @@
+#!/usr/bin/make
+#
+#### The toplevel directory of the source tree.
+#
+#SRCDIR = /home/drh/cvstrac/cvstrac
+
+#### C Compiler and options for use in building executables that
+# will run on the platform that is doing the build.
+#
+BCC = gcc -g -O2 -I$(LOCALBASE)/include
+
+#### The suffix to add to executable files. ".exe" for windows.
+# Nothing for unix.
+#
+E =
+
+#### C Compile and options for use in building executables that
+# will run on the target platform. This is usually the same
+# as BCC, unless you are cross-compiling.
+#
+TCC = gcc -g -O0 -Wall -I$(LOCALBASE)/include -lm
+
+#### Extra arguments for linking against SQLite
+#
+LIBSQLITE = -L$(LOCALBASE)/lib `pkg-config --static --libs sqlite3` -lcrypt
+
+#### Installation directory
+#
+INSTALLDIR = $(PREFIX)/bin
+
+
+# You should not need to change anything below this line
+###############################################################################
+include $(SRCDIR)/main.mk
|