Skip to content

Commit

Permalink
ppp now works (just about)
Browse files Browse the repository at this point in the history
  • Loading branch information
suborb committed Oct 8, 2002
1 parent d18080a commit 9d6856b
Showing 9 changed files with 237 additions and 158 deletions.
19 changes: 19 additions & 0 deletions devices/ppp/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

CFLAGS = -g -DLINUX -DPAP
INCLUDES = -I.
LIBS =
OBJS = hldc.o lcp_options.o pap.o ppp.o utils.o serial.o

%.o: %.c
$(CC) $(CFLAGS) $(INCLUDES) -c $<

all: $(OBJS)
$(CC) $(LDFLAGS) -o zsock $(CFLAGS) $(OBJS) $(LIBS)

libppp.a: $(OBJS)
ar cru libppp.a $(OBJS)
ranlib libppp.a


clean:
rm -f *.o *~
Loading

0 comments on commit 9d6856b

Please sign in to comment.