File: makefile_aixILP32_utf8_gcc

package info (click to toggle)
newlisp 10.7.0-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,036 kB
  • ctags: 5,375
  • sloc: ansic: 33,166; lisp: 7,369; java: 7,012; sh: 647; makefile: 273
file content (20 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#================== makefile_aixLP32_utf8_gcc (ILP32 memory model) ============
# makefile for newLISP v. 10.x.x on AIX with UTF-8 support on PowerPC CPU 
# 
OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
        nl-sock.o nl-import.o nl-xml-json.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o 

# use following for UTF-8 support and add nl-utf8.o to the OBJS line 
DEFAULT_CFLAGS = -maix32 -Wall -pedantic -fno-strict-aliasing -Wno-uninitialized -Wno-long-long -c -O2 -DSUPPORT_UTF8 -DAIX  $(CFLAGS)
CC = gcc 

default: $(OBJS) 
	$(CC) $(LDFLAGS) $(OBJS) -maix32 -lm  -ldl -lrt -lnsl -o newlisp 

.c.o: 
	$(CC) $(CPPFLAGS) $(DEFAULT_CFLAGS) $< 

$(OBJS): primes.h protos.h makefile_aixILP32_utf8_gcc 
# 
#==============================================================================