Skip to content

Commit

Permalink
Created a main Makefile to compile all programs.
Browse files Browse the repository at this point in the history
  • Loading branch information
linguini1 committed Jan 9, 2024
1 parent ce5bf14 commit 3d83457
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# PyCharm index
.idea
# Debug/development
.idea
.cache/
compile_commands.json

# Output
*.exe
*.out
*.o
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
### Make the entire project ###

all: gasm gemu mcasm

# Assembler
gasm:
$(MAKE) -C ./assembler assembler

# Emulator
gemu:
$(MAKE) -C ./emulator all

# Microcode assembler
mcasm:
$(MAKE) -C ./schematic all

0 comments on commit 3d83457

Please sign in to comment.