summaryrefslogtreecommitdiff
path: root/phnxdeco/Makefile
blob: d44c3e7e9d0c1909c5a5f161ef92092db7fbba47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS = -g -fpack-struct -Wall
CC = gcc

OBJS = kernel.o phnxdeco.o

all: phnxdeco

clean:
	rm -f *.o
	rm -f phnxdeco

phnxdeco: $(OBJS)
	$(CC) $(CFLAGS) $(OBJS) -o phnxdeco