mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-23 13:57:58 +02:00
15 lines
280 B
Makefile
15 lines
280 B
Makefile
SRCS= main.c parse.y make.c copy.c aux.c
|
|
OBJS= main.o parse.o make.o copy.o aux.o
|
|
|
|
PROG= parse
|
|
|
|
AUX= ../../../sun4/error.o
|
|
|
|
CFLAGS= -g -I. -I../.. -I. -DTEST -Dalloca=__builtin_alloca
|
|
LDFLAGS= -g
|
|
|
|
$(PROG): $(OBJS)
|
|
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(AUX) $(LIBS)
|
|
|
|
parse.o: parse.y
|