Makefile #6

  • //
  • guest/
  • harald_strack/
  • ap4client/
  • Makefile
  • View
  • Commits
  • Open Download .zip Download (783 B)
SOURCES = ap4_main.cpp TMClientUser.cpp  TMSyncUser.cpp TMSubmitUser.cpp \
		TMFSHook.cpp TMBO.cpp TMBOSubmit.cpp TMBOSync.cpp \
		TMTools.cpp TMBOEdit.cpp TMBORevert.cpp TMBOAdd.cpp \
		TMRevertUser.cpp TMBOInteg.cpp TMIntegUser.cpp \
		TMHelpUser.cpp TMBODelete.cpp

#INCLUDES = -I. -I./api-2.95
INCLUDES = -I. -I./api

OBJECTS = ${SOURCES:.cpp=.o}
#LIBRARIES = api-2.95/libclient.a api-2.95/librpc.a api-2.95/libsupp.a
LIBRARIES = api/libclient.a api/librpc.a api/libsupp.a
BINARY = ap4

#C++ = /usr/bin/g++-2.95
C++ = /usr/bin/g++
C++FLAGS = -c -g -D_GNU_SOURCE -DOS_LINUX
#LINK = /usr/bin/g++-2.95
LINK = /usr/bin/g++
LINKFLAGS =

.cpp.o :
	${C++} ${C++FLAGS} $< ${INCLUDES}

all : ${OBJECTS}
	${LINK} -o ${BINARY} ${OBJECTS} ${LIBRARIES}

clean :
	- ${RM} ${OBJECTS} ${BINARY}
# Change User Description Committed
#6 5056 harald_strack Directory support.
Serious bug concerned to not unzipped
binaries removed. Some other small bugfixes.
#5 4979 harald_strack Help output hooked.
#4 4978 harald_strack ap4 integrate implemented.
Octal format is now used to save
permissions. NOT backwards compatible anymore!!!
#3 4976 harald_strack Last Version was scrambled.
Hm.
#2 4975 harald_strack Permissions are now masked to 555, so no write is possible.
If you edit the Makefile and give the parameter -DFULL_PERMS,
you have the old behaviour.
Bugfix in ap4 revert: Edited and changed files were not reverted
correctly.
#1 4948 harald_strack Initial revision.