Initial import.
[alchemist.git] / x86 / test / Makefile
blobad24c6badac9d3798fc6e8f030af3360054a9c5a
1 include ../Makefile.cfg
3 TARGETS = exit42
4 OBJECTS =
6 all : test
8 clean :
9 -rm $(OBJECTS)
11 distclean : clean
12 -rm $(TARGETS)
14 test : $(TARGETS)
16 .SUFFIXES : .c .o
18 .c : $(LIBTARGET)
19 $(CC) $(CFLAGS) -I../../include $< -o $@ $(LDFLAGS) -L../lib -lalchemist_x86
21 .PHONY : all clean distclean test