move sboot to the root directory
[open-ath9k-htc-firmware.git] / sboot / utility / patch_gen / Makefile
1 TARGET = ../bin/patch_gen               # for Linux environment
2 #TARGET = ../bin/_gen.exe       # for CygWin environment
3
4 INC = $(HOME)/project/src/inc
5
6 all: $(TARGET)
7
8 $(TARGET):
9         gcc -o $(TARGET) -I$(INC) main.c patch.c
10
11
12 clean:
13         -rm $(TARGET)