Initial cut of the open ath9k htc firmware.
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / build / 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)