diff options
Diffstat (limited to 'client/makefile')
| -rw-r--r-- | client/makefile | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/client/makefile b/client/makefile index f79dd11..87d06a9 100644 --- a/client/makefile +++ b/client/makefile @@ -4,11 +4,14 @@ RM = rm -f  CFLAGS =  EXECNAME = main +include ../shared/os.mk +  all: $(EXECNAME)  SOURCES := $(wildcard *.c)  HEADERS := $(wildcard *.h)  # include ../shared/makefile +  OBJECTS := $(patsubst %.c,%.o, $(SOURCES))  .o: |