• Sign in

discontinued / xmlrpc · Files

Dogs2 white

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Snippets
  • Network
  • xmlrpc
  • server
  • Makefile
  • initial project revision
    36666a3a
    Georg Hopp authored
    2010-09-30 13:42:24 +0200  
    Browse Files »
Makefile 329 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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