Makefile
267 Bytes
INCLUDE=include
VPATH=../$(INCLUDE)
OBJECTS=$(system_OBJ)
all: $(OBJECTS)
%.o: %.c
gcc $(CFLAGS) -c $< -o $@
logRotate.o signalHandling.o socket.o: monitor.h
serverRun.o: signalHandling.h httpRequest.h
handleCmdLine.o: appConfig.h
.PHONY: clean
clean:
-rm *.o