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.
17 lines
267 B
17 lines
267 B
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
|