Refreshed the code to compile without warning.
[universe.git] / Makefile
index 10669ed..3a41714 100644 (file)
--- a/Makefile
+++ b/Makefile
 # CXX=g++-3.3
 
 ifeq ($(DEBUG),yes)
 # CXX=g++-3.3
 
 ifeq ($(DEBUG),yes)
- CXXFLAGS = -Wall -g -DDEBUG
+ CXXFLAGS = -fPIC -Wall -g -DDEBUG
 else
  # Optimized compilation
 #  CXXFLAGS = -Wall -g -O3 -pg --coverage
 else
  # Optimized compilation
 #  CXXFLAGS = -Wall -g -O3 -pg --coverage
- CXXFLAGS = -Wall -g -O3
+ CXXFLAGS = -fPIC -Wall -g -O3
 endif
 
 endif
 
-LDFLAGS = -L/usr/X11R6/lib/
+LDFLAGS = -L/usr/X11R6/lib/ -lz -ldl
 
 TASK_SRC = dummy.cc move_square.cc hit_shape.cc
 TASK_OBJ = $(TASK_SRC:.cc=.task)
 
 TASK_SRC = dummy.cc move_square.cc hit_shape.cc
 TASK_OBJ = $(TASK_SRC:.cc=.task)
@@ -33,11 +33,20 @@ all: main TAGS $(TASK_OBJ)
 TAGS: *.cc *.h
        etags *.cc *.h
 
 TAGS: *.cc *.h
        etags *.cc *.h
 
-main: main.o misc.o simple_window.o universe.o polygon.o map.o \
-      task.o retina.o manipulator.o approximer.o intelligence.o
-       $(CXX) -lX11 $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
-
-%.task: %.cc misc.o universe.o polygon.o map.o task.o manipulator.o
+main:  main.o misc.o \
+       simple_window.o \
+       universe.o \
+       polygon.o \
+       xfig_tracer.o \
+       map.o \
+       task.o \
+       retina.o \
+       manipulator.o \
+       approximer.o \
+       intelligence.o
+       $(CXX) $(CXXFLAGS) $(LDFLAGS) -lX11 -o $@ $^
+
+%.task: %.cc misc.o universe.o polygon.o xfig_tracer.o map.o task.o manipulator.o
        $(CXX) $(CXXFLAGS) -shared -Wl,-soname,$@ -o $@ $^
 
 Makefile.depend: *.h *.cc Makefile
        $(CXX) $(CXXFLAGS) -shared -Wl,-soname,$@ -o $@ $^
 
 Makefile.depend: *.h *.cc Makefile