mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-18 16:30:59 +00:00
14 lines
182 B
Makefile
14 lines
182 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -O2
|
|
|
|
all: testarp
|
|
|
|
testarp: testarp.o
|
|
$(CC) $(LFLAGS) -o testarp testarp.o
|
|
|
|
testarp.o: testarp.c
|
|
$(CC) $(CFLAGS) -c testarp.c
|
|
|
|
clean:
|
|
rm -f *~ *.o testarp
|