1
0
This repository has been archived on 2025-04-09. You can view files and clone it. You cannot open issues, pull requests or push a commit.
Files
router_hacking/sagemcom/f1704/Makefile
2018-07-25 15:55:44 -03:00

17 lines
203 B
Makefile

TARGET=sagem_build
CC=gcc
CFLAGS=-c -Wall -I.
all: $(TARGET)
$(TARGET): sagem_build.o
$(CC) -lz -lssl -o $@ $<
%.o: %.c sagem_build.h
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -rf *.o *~ $(TARGET)