mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 07:43:07 +02:00
13 lines
155 B
Makefile
13 lines
155 B
Makefile
ALL = catcher
|
|
|
|
all: $(ALL)
|
|
|
|
DEPSTUFF = Makefile
|
|
|
|
CFLAGS = -O -g -Wall -D_POSIX_SOURCE
|
|
|
|
catcher: $(DEPSTUFF) catcher.c
|
|
|
|
clean:
|
|
-rm $(ALL) *.core core *.o
|