Skip to content

Commit

Permalink
add shared run files to shared
Browse files Browse the repository at this point in the history
  • Loading branch information
jgthomas committed Jan 19, 2019
1 parent 96d351a commit 37dacb7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions run/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ EXECUTABLES = $(BUILD_DIR)/run4 \
$(BUILD_DIR)/run8

# FILES
SHARED_HEADERS = emulator.h instructions.h debugger.h descriptions.h conversion.h files.h
SHARED_SOURCES = emulator.c instructions.c debugger.c descriptions.c conversion.c files.c
FOUR_HEADERS = run.h $(SHARED_HEADERS)
FOUR_SOURCES = run.c run4.c $(SHARED_SOURCES)
SHARED_HEADERS = emulator.h instructions.h debugger.h descriptions.h conversion.h files.h run.h
SHARED_SOURCES = emulator.c instructions.c debugger.c descriptions.c conversion.c files.c run.c
FOUR_HEADERS = $(SHARED_HEADERS)
FOUR_SOURCES = run4.c $(SHARED_SOURCES)
FOUR_OBJECTS := $(FOUR_SOURCES:%.c=$(BUILD_DIR)/%.o)
FOUR_DEPENDS = $(FOUR_OBJECTS:%.o=%.d)
EIGHT_HEADERS = run.h $(SHARED_HEADERS)
EIGHT_SOURCES = run.c run8.c $(SHARED_SOURCES)
EIGHT_HEADERS = $(SHARED_HEADERS)
EIGHT_SOURCES = run8.c $(SHARED_SOURCES)
EIGHT_OBJECTS := $(EIGHT_SOURCES:%.c=$(BUILD_DIR)/%.o)
EIGHT_DEPENDS = $(EIGHT_OBJECTS:%.o=%.d)

Expand Down

0 comments on commit 37dacb7

Please sign in to comment.