diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-04-05 15:09:59 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:26 -0400 |
commit | d1cb824564ecb06b99c6c2e4fc073f8ca4bcfd9a (patch) | |
tree | af85d02e4c7eb8452fd824f885fe3c9ae48d1ff7 /Makefile | |
parent | c89853497a4b1f481475da5e6e72e0c2612445c4 (diff) | |
download | roux-d1cb824564ecb06b99c6c2e4fc073f8ca4bcfd9a.tar.gz |
add simple Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5af98f3 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: all test + +all: bak + +bak: elf.ml lo2.ml + ocamlc -o bak elf.ml lo2.ml + +test: bak + ./bak test + cc -o t tmain.c t.o + ./t |