Skip to content

Commit

Permalink
FIXED MAKE ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
rhagee committed Jan 17, 2020
1 parent fffcf1b commit d611181
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 8 deletions.
Binary file added exe/main
Binary file not shown.
Binary file added exe/pawn
Binary file not shown.
Binary file added exe/player
Binary file not shown.
10 changes: 10 additions & 0 deletions exe/settings.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
SO_NUM_G 2 4
SO_NUM_P 10 400
SO_MAX_TIME 3 1
SO_BASE 60 120
SO_ALTEZZA 20 40
SO_FLAG_MIN 5 5
SO_FLAG_MAX 5 40
SO_ROUND_SCORE 10 200
SO_N_MOVES 20 200
SO_MIN_HOLD_NSEC 100000000 100000000
Binary file added lib/sharedmem.o
Binary file not shown.
25 changes: 17 additions & 8 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@

FLAGS = -std=c89 -Wpedantic #OPTION FOR EXECUTABLE FILES
OFLAGS = -c -std=c89 -Wpedantic #OPTIONS FOR .o FILE
#OPTION FOR EXECUTABLE FILES
FLAGS = -std=c89 -Wpedantic
#OPTIONS FOR .o FILE
OFLAGS = -c -std=c89 -Wpedantic

#OBJ = src/master.c src/player.c src/pawn.c
DEPS = lib/sharedmem.c lib/sharedmem.h #DEPENDENCIES

EXECUTABLE = main #EXECUTABLE NAME
EXDIR = exe #EXE DIRECTORY
SDIR = src #SOURCE DIRECTORY
#DEPENDENCIES
DEPS = lib/sharedmem.c lib/sharedmem.h

LIBDIR = lib #LIBRARY DIRECTORY
LIBNAME = sharedmem.o #LIBRARY NAME AFTER GENERATING .o
#EXECUTABLE NAME
EXECUTABLE = main
#EXE DIRECTORY
EXDIR = exe
#SOURCE DIRECTORY
SDIR = src

#LIBRARY DIRECTORY
LIBDIR = lib
#LIBRARY NAME AFTER GENERATING .o
LIBNAME = sharedmem.o


#BASIC MAKE
Expand Down

0 comments on commit d611181

Please sign in to comment.