blob: b121b7520baa2274474691a4ad515e67f87bd8ac [file] [log] [blame]
swissChilib3abcd92021-03-02 20:00:44 -08001OBJECTS = main.o
2JAYROOT = ../../
3CFLAGS = -O2 -I$(JAYROOT)/include -Wall
4
5mkinitrd: $(OBJECTS)
6 $(CC) -o $@ $^
7
swissChilif46600c2021-03-03 12:35:33 -08008install: mkinitrd
9 cp mkinitrd $(JAYROOT)/bin
10
swissChilib3abcd92021-03-02 20:00:44 -080011clean:
12 rm -f *.o mkinitrd
13
swissChilif46600c2021-03-03 12:35:33 -080014.PHONY: clean install