comparison mach-o-loader/Makefile @ 2:747f68297ba5 default tip

add c language mach-O loader program. this program only analize, can't still load now.
author taiki <taiki@cr.ie.u-ryukyu.ac.jp>
date Tue, 04 Mar 2014 14:41:35 +0900
parents
children
comparison
equal deleted inserted replaced
1:1b796d0dd763 2:747f68297ba5
1 TARGET = loader
2
3 CC = clang
4
5 CFLAGS = -g -O2 -Wall
6
7
8 $(TARGET): loader.c
9 $(CC) $(CFLAGS) -o $@ $^
10
11 clean:
12 rm $(TARGET) *.o