|
@@ -1,12 +1,3 @@
|
|
|
-all: compile
|
|
|
|
|
-
|
|
|
|
|
-install: not_installable
|
|
|
|
|
-uninstall: not_installable
|
|
|
|
|
-
|
|
|
|
|
-not_installable:
|
|
|
|
|
- echo "The library cannot be installed on the system but statically linked to another Lazarus package or application."
|
|
|
|
|
-
|
|
|
|
|
-init:
|
|
|
|
|
ifeq ($(OS),Windows_NT) # true for Windows_NT or later
|
|
ifeq ($(OS),Windows_NT) # true for Windows_NT or later
|
|
|
COPY := winmake\copyfile
|
|
COPY := winmake\copyfile
|
|
|
REMOVE := winmake\remove
|
|
REMOVE := winmake\remove
|
|
@@ -22,13 +13,23 @@ else
|
|
|
RUN := $(strip $(RUN))
|
|
RUN := $(strip $(RUN))
|
|
|
endif
|
|
endif
|
|
|
|
|
|
|
|
-clean: init clean_bgracontrols
|
|
|
|
|
|
|
+all: compile
|
|
|
|
|
+
|
|
|
|
|
+install: not_installable
|
|
|
|
|
+uninstall: not_installable
|
|
|
|
|
+
|
|
|
|
|
+not_installable:
|
|
|
|
|
+ echo "The library cannot be installed on the system but statically linked to another Lazarus package or application."
|
|
|
|
|
+
|
|
|
|
|
+clean: clean_bgracontrols
|
|
|
|
|
|
|
|
clean_bgracontrols:
|
|
clean_bgracontrols:
|
|
|
$(REMOVEDIR) "lib"
|
|
$(REMOVEDIR) "lib"
|
|
|
$(REMOVEDIR) "backup"
|
|
$(REMOVEDIR) "backup"
|
|
|
|
|
|
|
|
-compile: init BGRAControls
|
|
|
|
|
-BGRAControls: bgracontrols.lpk
|
|
|
|
|
|
|
+compile: BGRAControls
|
|
|
|
|
+lazbuild:
|
|
|
|
|
+ #lazbuild will determine what to recompile
|
|
|
|
|
+BGRAControls: lazbuild bgracontrols.lpk
|
|
|
lazbuild bgracontrols.lpk
|
|
lazbuild bgracontrols.lpk
|
|
|
|
|
|