[go: up one dir, main page]

File: irixMakefile

package info (click to toggle)
lincity 1.11-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,488 kB
  • ctags: 2,641
  • sloc: cpp: 24,598; makefile: 245; sh: 32; perl: 10
file content (34 lines) | stat: -rwxr-xr-x 871 bytes parent folder | download | duplicates (13)
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
#  irixMakefile for LinCity
#  Thanks to Frederic.Roussel@eng.efi.com (Frederic Roussel)

#  DO NOT INVOKE THIS FILE DIRECTLY, it is called from the Makefile.
#  Edit the Makefile to point to where you want the binary and libraries
#  to go. Then  'make clean', 'make irix' and 'make install'.

LIBS =        -lXext -lX11 -lm

OPTS =        -O3 -DIRIX -DLC_X11 -DLIBDIR=\"$(LC_LIBDIR)/\"

CXXFLAGS = $(OPTS) $(INCLUDES)

SOURCE =      main.cxx \
              mouse.cxx \
              screen.cxx \
              mps.cxx \
              typeinit.cxx \
              engine.cxx \
              transport.cxx \
              market.cxx \
              help.cxx \
              lcx11.cxx

OBJECTS = $(SOURCE:.cxx=.o)

all : $(OBJECTS)
	CC -o xlin-city $(OBJECTS) $(LIBS)


clean:
	/bin/rm -f $(OBJECTS) xlin-city

#    --------  End of irixMakefile for LinCity  -----------