File: Makefile

package info (click to toggle)
theseus 3.3.0-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 91,424 kB
  • sloc: ansic: 41,682; makefile: 267; sh: 121
file content (15 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include ../make.inc

OBJECTS	= DLTutils.o

libDLTutils.a:		$(OBJECTS)
					$(ARCH) $(ARCHFLAGS) libDLTutils.a $(OBJECTS)
					$(RANLIB) libDLTutils.a

DLTutils.o:			DLTutils.c
					$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c DLTutils.c

install:

clean:
					rm -f $(OBJECTS)