mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-26 23:33:08 +02:00
10 lines
144 B
Makefile
10 lines
144 B
Makefile
all: getdate
|
|
|
|
getdate.c: getdate.y
|
|
yacc getdate.y
|
|
mv y.tab.c getdate.c
|
|
|
|
getdate: getdate.c
|
|
$(CC) -o $@ getdate.c
|
|
rm -f getdate.c getdate.o
|