blob: 09edffc15a7846ca1c8d4f5a9d488defa72a74a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- Makefile.orig 2003-07-31 22:49:19.000000000 -0400
+++ Makefile 2003-07-31 22:50:10.000000000 -0400
@@ -9,13 +9,10 @@
#
linux:
+ $(MAKE) -j2 -C src freecnc-bin \
- "EXTRACFLAGS = -ansi -pedantic -Werror" \
"LIBS = -lSDL_net"
+ $(MAKE) -j2 -C src plugins \
- "EXTRACFLAGS = -ansi -pedantic -fPIC -Werror" \
- "LDFLAGS = -shared"
- + $(MAKE) -j2 -C tools \
- "EXTRACFLAGS = -ansi -pedantic"
+ "LDFLAGS = ${LDFLAGS} -shared"
+ + $(MAKE) -j2 -C tools
linux-nonet:
+ $(MAKE) -j2 -C src freecnc-bin \
|