1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-23 17:13:22 -05:00
freesource 62ac34672a This adds a new c program skas-or-tt mostly from uml code which
automates the recognition of whether or not the host kernel has the
skas patch applied.  Makefile edits itself, and all gui is automated.
2003-01-03 16:34:21 +00:00

20 lines
260 B
Makefile

CC=gcc
CFLAGS=-Wall -O2
SRC=skas-or-tt.c
OBJS=$(patsubst %.c,%.o, $(SRC))
all: skas-or-tt
skas-or-tt: $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS) -o $@
$(OBJS): %.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
$(OBJS): Makefile
clean:
rm -f *.o *.a core skas-or-tt