File: Makefile

package info (click to toggle)
empire-hub 1.0.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 80 kB
  • ctags: 94
  • sloc: ansic: 893; makefile: 41
file content (22 lines) | stat: -rw-r--r-- 314 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
# $Id: Makefile,v 0.3 1996/08/23 18:48:02 dld Exp dld $
#
# Makefile for hub (EmpireHub), an empire protocol splitter/multiplexer

# For Solaris
# LDFLAGS = -lnsl -lsocket

# for debugging
CFLAGS = -g

SRC = hub.c
OBJ = $(SRC:.c=.o)

all: emp_hub

emp_hub: $(OBJ)
	$(CC) -o $@ $^ -lc

clean:
	-rm -f emp_hub *.o