Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsmeding committed Jan 29, 2017
1 parent 68f5c24 commit c76d9bd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CXX = g++
CXXFLAGS = -Wall -Wextra -std=c++11 -O2 -fwrapv

.PHONY: all clean remake

all: mariolang

clean:
rm mariolang

remake: clean
$(MAKE) all

1 comment on commit c76d9bd

@Mole888
Copy link

@Mole888 Mole888 commented on c76d9bd May 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a bunch of code that i believe can be interpreted using mariolang - i can not read what this code says and wonder if you can assist

The code is on the attached
Mario jpg

Thanks in advance
Mole

Please sign in to comment.