File: Makefile.common

package info (click to toggle)
nedit 1%3A5.7-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 8,648 kB
  • sloc: ansic: 95,124; xml: 1,427; yacc: 679; makefile: 341; awk: 40; sh: 12
file content (22 lines) | stat: -rw-r--r-- 552 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
21
22
#
# Platform independent part of make procedure for Nirvana utilities directory, 
# included by machine specific makefiles.
#

OBJS = DialogF.o getfiles.o printUtils.o misc.o fileUtils.o \
	prefFile.o fontsel.o managedList.o utils.o clearcase.o motif.o \
	rbTree.o refString.o nedit_malloc.o

all: libNUtil.a

libNUtil.a: $(OBJS)
	$(AR) $(ARFLAGS) libNUtil.a $(OBJS)

printUtils.o: printUtils.c
	$(CC) -c $(CFLAGS) $(PRINTFLAGS) -o $@ printUtils.c

clean:
	rm -f $(OBJS) libNUtil.a

# Get the dependencies for all objects
include Makefile.dependencies