summaryrefslogtreecommitdiff
path: root/utils/sysdeps/Makefile
blob: 53c10e58abe8f385b49d01e49727da2c661ed23a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This Makefile will work only with GNU make.

CFLAGS += $(OPTFLAGS) $(WARNFLAGS) -O2 -fno-inline -Wall -Wstrict-prototypes -g

SYSDEPS_OBJS=sysdeps.o

all: $(SYSDEPS_OBJS)

clean:
	rm -f *.o .depend

depend:
	gcc $(CFLAGS) -M `ls *.c` > .depend

-include .depend