File: Makefile

package info (click to toggle)
uml-utilities 20070815.4-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 752 kB
  • sloc: ansic: 3,392; perl: 1,277; makefile: 239; exp: 129; sh: 122
file content (13 lines) | stat: -rw-r--r-- 138 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
LIB = libuml.a
OBJS = rights.o
CFLAGS = -g -Wall

all : $(LIB)

$(LIB) : $(OBJS)
	$(AR) r $@ $<

clean :
	rm -f $(LIB) $(OBJS)

install :