You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
329 B
19 lines
329 B
INCLUDE=include
|
|
VPATH=../$(INCLUDE)
|
|
|
|
OBJECTS=$(server_OBJ)
|
|
|
|
all: $(OBJECTS)
|
|
|
|
%.o: %.c
|
|
gcc $(CFLAGS) -c $< -o $@
|
|
|
|
server.h: client.h
|
|
server%.o: server.h monitor.h
|
|
serverRun.o serverInit.o: socket.h logRotate.h
|
|
serverRun.o serverShutdown.o: writeBuffer.h
|
|
serverRun.o: signalHandling.h httpRequest.h
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm *.o
|