Update.
[universe.git] / Makefile
index 0f7540c..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)
 
-all: mash main TAGS $(TASK_OBJ)
+all: main TAGS $(TASK_OBJ)
 
 TAGS: *.cc *.h
        etags *.cc *.h
 
 TAGS: *.cc *.h
        etags *.cc *.h
@@ -44,10 +44,7 @@ main:        main.o misc.o \
        manipulator.o \
        approximer.o \
        intelligence.o
        manipulator.o \
        approximer.o \
        intelligence.o
-       $(CXX) -lX11 $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
-
-mash:  misc.o universe.o polygon.o xfig_tracer.o mash.o
-       $(CXX) -lX11 $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
+       $(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 $@ $^
 
 %.task: %.cc misc.o universe.o polygon.o xfig_tracer.o map.o task.o manipulator.o
        $(CXX) $(CXXFLAGS) -shared -Wl,-soname,$@ -o $@ $^