[go: up one dir, main page]

File: Makefile

package info (click to toggle)
uml-utilities 20070815-1.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 736 kB
  • ctags: 436
  • sloc: ansic: 3,390; perl: 1,277; makefile: 253; sh: 164; exp: 129
file content (17 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
OBJS = jail_uml.o
BIN = jail_uml
CFLAGS ?= -g -Wall

SBIN_DIR ?= /usr/sbin

all : $(BIN)

$(BIN) : $(OBJS)
	$(CC) $(CFLAGS) -o $(BIN) $(OBJS)

install : $(BIN)
	install -d $(DESTDIR)$(SBIN_DIR)
	install -s $(BIN) $(DESTDIR)$(SBIN_DIR)

clean :
	rm -rf *~ $(BIN) $(OBJS) cell[0-9]* core* tty_log_cell*