Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile « jay « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10991a5435f5d83df904446f6185cab79569753f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all	= jay
c	= closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c \
	  symtab.c verbose.c warshall.c

CFLAGS=#-g

jay:	$(c:.c=.o)	; $(CC) -o $@ $(CFLAGS) $(c:.c=.o)

clean:
	rm -f jay *.o

windows: jay

linux: jay