blob: 4a190c4f48175284088841f7770f2006f3ea4068 [file] [log] [blame] [raw]
ifeq ($(CC),cc)
CC := gcc
endif
CFLAGS += -Wall -O1
LIBS += -lreadline
OBJECTS = client.o local-packet.o main.o server.o
sshoutd: $(OBJECTS)
$(CC) $^ -o $@ $(LIBS)
clean:
rm -f $(OBJECTS) sshoutd