reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
include Makefile.rules

a.out: globals.ll
	$(CC) $(CFLAGS) -g -c $^ -o globals.o
	$(LD) $(LDFLAGS) -g globals.o -o $@

clean::
	rm -rf globals.o a.out *.dSYM