aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/Makefile.linux64
blob: 72020ddb5ce5272721fa6214dd991c19a6731668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This is for linux 64
CC = gcc
CFLAGS = -D_SUN_ -DGNU_C -DG_A64 -O -fomit-frame-pointer
AR = ar
RANLIB = ranlib

OBJECTS = \
	backend.o backendsupport.o buildtree.o checker_2.o checksupport.o \
	cocl.o codegen1.o codegen2.o codegen3.o codegen.o comparser_2.o \
	compiler.o comsupport.o dbprint.o instructions.o optimisations.o \
	pattern_match_2.o sa.o scanner_2.o \
	set_scope_numbers.o settings.o unix_io.o statesgen.o tcsupport_2.o \
	typeconv_2.o version.o

backend.a: $(OBJECTS)
	$(AR) cur backend.a $(OBJECTS)
	$(RANLIB) backend.a