mirror of
https://github.com/eddyem/canon-lens.git
synced 2026-03-22 09:40:57 +03:00
init on github
This commit is contained in:
18
03-focusing/Frontend/Makefile
Normal file
18
03-focusing/Frontend/Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
PROGRAM = FE
|
||||
LOADLIBES =
|
||||
CXX.SRCS = FE.c
|
||||
CC = gcc
|
||||
DEFINES =
|
||||
CXX = gcc
|
||||
CPPFLAGS = -Wall $(DEFINES)
|
||||
OBJS = $(CXX.SRCS:.c=.o)
|
||||
all : $(PROGRAM) clean
|
||||
$(PROGRAM) : $(OBJS)
|
||||
$(CC) $(CPPFLAGS) $(OBJS) $(LOADLIBES) -o $(PROGRAM)
|
||||
clean:
|
||||
/bin/rm -f *.o *~
|
||||
depend:
|
||||
$(CXX) -MM $(CXX.SRCS)
|
||||
|
||||
### <DEPENDENCIES ON .h FILES GO HERE>
|
||||
# name1.o : header1.h header2.h ...
|
||||
Reference in New Issue
Block a user