File: Makefile.common

package info (click to toggle)
nedit 5.02-4
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 2,456 kB
  • ctags: 2,911
  • sloc: ansic: 39,134; yacc: 335; makefile: 65; sh: 8
file content (25 lines) | stat: -rw-r--r-- 762 bytes parent folder | download | duplicates (2)
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
# SCCS ID: Makefile.common 1.9 8/10/93
#
# Platform independent part of make procedure for Nirvana NEdit directory, 
# included by machine specific makefiles.
#

OBJS =	nedit.o file.o menu.o window.o selection.o search.o undo.o shift.o \
	help.o preferences.o tags.o userCmds.o shell.o regularExp.o macro.o \
	text.o textSel.o textDisp.o textBuf.o textDrag.o server.o highlight.o \
	highlightData.o interpret.o parse.o smartIndent.o

all: nedit nc

nedit: $(OBJS) ../util/libNUtil.a
	$(CC) $(CFLAGS) $(OBJS) ../util/libNUtil.a $(LIBS) -o $@

nc: nc.o
	$(CC) $(CFLAGS) nc.o ../util/libNUtil.a $(LIBS) -o $@

help.o: help.c
	$(CC) $(CFLAGS) $(BIGGER_STRINGS) -c help.c -o $@

smartIndent.o: smartIndent.c
	$(CC) $(CFLAGS) $(BIGGER_STRINGS) -c smartIndent.c -o $@