8d3957f3b8
Also remove CC and link flags since linking is done in main Makefile
10 lines
169 B
Makefile
10 lines
169 B
Makefile
DEPS =
|
|
OBJS = dialer.o transport_dialer.o connection.o tcp_transport_dialer.o session.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
rm -f *.o
|