chiark / gitweb /
Compiles and runs. Now all it needs is meat.
[chiark-tcl.git] / base / troglodyte-Makefile
1 OBJS=   forwarder.o \
2         main.o \
3         misc.o \
4         intr-sigio.o \
5         bget/bget.o
6
7 HDRS=   misc.h \
8         forwarder.h \
9         intr.h
10
11 CFLAGS= -g -Wall
12
13 fvpn:           $(OBJS)
14                 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)
15
16 %.o:            %.c $(HDRS)
17                 $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<
18
19 clean:
20                 rm -f $(OBJS) *~ ./#*#