File: Makefile

package info (click to toggle)
empire-hub 1.0.2.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 92 kB
  • sloc: ansic: 894; makefile: 10
file content (19 lines) | stat: -rw-r--r-- 308 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $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

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

all: emp_hub

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

clean:
	-rm -f emp_hub *.o