tcc-stupidos/libtcc1/Makefile.am

24 lines
547 B
Text
Raw Normal View History

COMPILE = ../tcc/tcc
noinst_LIBRARIES = libtcc1.a
libtcc1_a_SOURCES = alloca.S atomic.S builtin.c libtcc1.c stdatomic.c
2025-02-11 12:07:04 +00:00
libtcc1_a_AR = ../tcc/tcc -ar cr
libtcc1_a_DEPENDENCIES = ../tcc/tcc
libtcc1_a_RANLIB = @echo
alloca.o: alloca.S
$(COMPILE) -o $@ -c $^ -I$(srcdir)/include
atomic.o: atomic.S
$(COMPILE) -o $@ -c $^ -I$(srcdir)/include
builtin.o: builtin.c
$(COMPILE) -o $@ -c $^ -I$(srcdir)/include
libtcc1.o: libtcc1.c
$(COMPILE) -o $@ -c $^ -I$(srcdir)/include
stdatomic.o: stdatomic.c
$(COMPILE) -o $@ -c $^ -I$(srcdir)/include